Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33186 (GCVE-0-2026-33186)
Vulnerability from cvelistv5 – Published: 2026-03-20 22:23 – Updated: 2026-03-24 18:09- CWE-285 - Improper Authorization
| URL | Tags |
|---|---|
| https://github.com/grpc/grpc-go/security/advisori… | x_refsource_CONFIRM |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-33186",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-03-24T18:08:38.989284Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-03-24T18:09:13.422Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "grpc-go",
"vendor": "grpc",
"versions": [
{
"status": "affected",
"version": "\u003c 1.79.3"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-285",
"description": "CWE-285: Improper Authorization",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-03-20T22:23:32.147Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"source": {
"advisory": "GHSA-p77j-4mvh-x3m3",
"discovery": "UNKNOWN"
},
"title": "gRPC-Go has an authorization bypass via missing leading slash in :path"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33186",
"datePublished": "2026-03-20T22:23:32.147Z",
"dateReserved": "2026-03-17T22:16:36.720Z",
"dateUpdated": "2026-03-24T18:09:13.422Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-33186",
"date": "2026-06-29",
"epss": "0.00522",
"percentile": "0.40354"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33186\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-03-20T23:16:45.180\",\"lastModified\":\"2026-06-17T10:37:05.900\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"},{\"lang\":\"es\",\"value\":\"gRPC-Go es la implementaci\u00f3n en lenguaje Go de gRPC. Las versiones anteriores a la 1.79.3 tienen un bypass de autorizaci\u00f3n resultante de una validaci\u00f3n de entrada incorrecta del pseudo-encabezado HTTP/2 \u0027:path\u0027. El servidor gRPC-Go era demasiado indulgente en su l\u00f3gica de enrutamiento, aceptando solicitudes donde el \u0027:path\u0027 omit\u00eda la barra inicial obligatoria (por ejemplo, \u0027Service/Method\u0027 en lugar de \u0027/Service/Method\u0027). Si bien el servidor enrut\u00f3 con \u00e9xito estas solicitudes al gestor correcto, los interceptores de autorizaci\u00f3n (incluido el paquete oficial \u0027grpc/authz\u0027) evaluaron la cadena de ruta cruda y no can\u00f3nica. En consecuencia, las reglas de \u0027denegaci\u00f3n\u0027 definidas usando rutas can\u00f3nicas (que comienzan con \u0027/\u0027) no lograron coincidir con la solicitud entrante, permitiendo que bypassara la pol\u00edtica si una regla de \u0027permiso\u0027 de respaldo estaba presente. Esto afecta a los servidores gRPC-Go que utilizan interceptores de autorizaci\u00f3n basados en rutas, como la implementaci\u00f3n oficial de RBAC en \u0027google.golang.org/grpc/authz\u0027 o interceptores personalizados que dependen de \u0027info.FullMethod\u0027 o \u0027grpc.Method(ctx)\u0027; Y que tienen una pol\u00edtica de seguridad que contiene reglas de \u0027denegaci\u00f3n\u0027 espec\u00edficas para rutas can\u00f3nicas pero permite otras solicitudes por defecto (una regla de \u0027permiso\u0027 de respaldo). La vulnerabilidad es explotable por un atacante que puede enviar tramas HTTP/2 crudas con encabezados \u0027:path\u0027 malformados directamente al servidor gRPC. La correcci\u00f3n en la versi\u00f3n 1.79.3 asegura que cualquier solicitud con un \u0027:path\u0027 que no comience con una barra inicial sea inmediatamente rechazada con un error \u0027codes.Unimplemented\u0027, impidiendo que llegue a los interceptores de autorizaci\u00f3n o gestores con una cadena de ruta no can\u00f3nica. Si bien la actualizaci\u00f3n es la ruta m\u00e1s segura y recomendada, los usuarios pueden mitigar la vulnerabilidad utilizando uno de los siguientes m\u00e9todos: Usar un interceptor de validaci\u00f3n (mitigaci\u00f3n recomendada); normalizaci\u00f3n a nivel de infraestructura; y/o endurecimiento de pol\u00edticas.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"grpc\",\"product\":\"grpc-go\",\"versions\":[{\"version\":\"\u003c 1.79.3\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-03-24T18:08:38.989284Z\",\"id\":\"CVE-2026-33186\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-285\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:grpc:grpc:*:*:*:*:*:go:*:*\",\"versionEndExcluding\":\"1.79.3\",\"matchCriteriaId\":\"D5AB3ED0-D11B-461E-B2B1-627D5CCEA236\"}]}]}],\"references\":[{\"url\":\"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mitigation\",\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-33186\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-03-24T18:08:38.989284Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-03-24T18:09:03.096Z\"}}], \"cna\": {\"title\": \"gRPC-Go has an authorization bypass via missing leading slash in :path\", \"source\": {\"advisory\": \"GHSA-p77j-4mvh-x3m3\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 9.1, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}], \"affected\": [{\"vendor\": \"grpc\", \"product\": \"grpc-go\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c 1.79.3\"}]}], \"references\": [{\"url\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"name\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"tags\": [\"x_refsource_CONFIRM\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-285\", \"description\": \"CWE-285: Improper Authorization\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-03-20T22:23:32.147Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-33186\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-03-24T18:09:13.422Z\", \"dateReserved\": \"2026-03-17T22:16:36.720Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-03-20T22:23:32.147Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:25201
Vulnerability from csaf_redhat - Published: 2026-06-17 08:59 - Updated: 2026-06-29 17: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.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.19.34 is now available with updates to packages and images that fix several bugs and add enhancements.\n\n This release includes a security update for Red Hat OpenShift Container Platform 4.19.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.19.34. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:25199\n\nSpace precludes documenting all of the container images in this advisory. See the following Release Notes documentation, which will be updated shortly for this release, for details about these changes:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:25201",
"url": "https://access.redhat.com/errata/RHSA-2026:25201"
},
{
"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_25201.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.34 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T17:50:51+00:00",
"generator": {
"date": "2026-06-29T17:50:51+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:25201",
"initial_release_date": "2026-06-17T08:59:14+00:00",
"revision_history": [
{
"date": "2026-06-17T08:59:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T09:00:57+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:51+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Ac04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780979297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780979331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780976935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780976053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Af230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780981016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Aee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780985311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ab046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780982237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ae295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781010180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780984444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781002119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780986286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780977473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780979380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781002074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780978409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780976734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780975937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780976972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780976436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780976638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780976032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781068883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780982415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ac199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780980329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780982439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780985180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780976919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780978446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Ad64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780976314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780976042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780976099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Aeea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780976148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Ad262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780976083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ad60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ab32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780976666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ae73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780976494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ab3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780979806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780977329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Af399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780976097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Af3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780976371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780977604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780978378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Aa7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780979164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780976954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780978481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Acf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780978082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780985485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780988402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780984555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780979731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Af15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780980779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780978877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780981077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Af975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780981015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780976005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780979698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ad75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781002169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780986403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780986275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780980433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ab2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780984883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ad441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780977132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780976005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Af2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780976187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780976134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780976131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780976063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780976083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780976112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Aea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780976103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Afed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780976147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Afb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780976102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780986354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Acf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780976073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ab6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780986185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Af0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780980363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Abb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780979906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ae7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780986226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780976860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780979221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780977547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780985445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Adde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780977003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780985404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780982565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aa6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780979454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780980386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780977548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780986349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Adbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780980406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780985334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Afa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780980746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780985294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780985960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ad78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780976657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ad7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780978725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Aaeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780980737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780977997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780986173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780978373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Aad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780985207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780983673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780975976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Af592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781002115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Af264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780976803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Abd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780979180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Abcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780978640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780977018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ad99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780976541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780977208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780977645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ad7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780976045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780976190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780976324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780976119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780981779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780976312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Afbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780976076"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780981053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780978218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aa5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780977810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ad6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780983862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ae96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780988928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780986328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ad654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780985041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780985048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ade6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780984376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ac25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780976804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780976089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Ab9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780976103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781029706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780977540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780980419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780988896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780983293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ab75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780976827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780981380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780980540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780979428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ab7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780986255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780993987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1780975985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1780976039"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780979404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ac5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780983156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Abc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780985484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ab7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780980682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780976990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780978022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780977200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780975978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780976748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780977634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780976107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Adcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780976831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780986285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780977133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1780975958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1780975958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1780975945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1780975945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1780975995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1780976041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Abde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780982932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ad26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780976972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780982679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780986205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780986297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780985269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Aae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780985154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3Abd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1780976008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Aaf0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1780975921"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Aa7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780979297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Afc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780979331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780976935"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Ac70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780976053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780981016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780985311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780982237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781010180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ae0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780984444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781002119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780986286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ac92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780977473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780979380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780976436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Af14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781002074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ae95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780978409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Af9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780976638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780976032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781068883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780982415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780980329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780982439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780985180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780976919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780978446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Acfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780976314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780976042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780976099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780976148"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780976083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780976666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780976494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780979806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780977329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Adc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780976097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Aa32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780976371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780977604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780978378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780979164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780976954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780978481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780978082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Af60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780985485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780988402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780984555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780979731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780980779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Adb47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780978877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780981077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780981015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ab5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780976005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Ab45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780979698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ac1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781002169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780986403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780986275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780980433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780984883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780977132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780976005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780976187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Ab6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780976134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780976131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780976063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780976083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Af3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780976112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780976103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780976147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780976102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ad51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780986354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780976073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780986185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780980363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Abff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780979906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Aaa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780986226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Aabb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780976860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780979221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Aeab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780977547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ac73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780985445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780977003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780985404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Ab66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780982565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ad2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780979454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780980386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780977548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780986349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780980406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Adc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780985334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780980746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780985294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Adae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780985960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780976657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780978725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780980737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780977997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aaa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780986173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Af76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780978373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780985207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780983673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780975976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ab4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781002115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Aa366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780976803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780979180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ab0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780978640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aa6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780977018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780976541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780977208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Acf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780977645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ad26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780976045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Aaf375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780976076"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780981053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Aa753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780978218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780977810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780983862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ad3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780988928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780986328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ac42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780985041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ae6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780985048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780984376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Aa0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780976804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Afa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780976089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Adf14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780976103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ad3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781029706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ada002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780977540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ae2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780980419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780988896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ae3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780983293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Abe21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780976827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ac6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780981380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780980540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Ac636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780979428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780986255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780993987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Af383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780979404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780983156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Aaf57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780985484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Aa58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780980682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780976990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780978022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780977200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780976831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780986285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780977133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780982932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ac565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780976972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780982679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ac9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780986205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780986297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780985269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ab0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780985154"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Aa96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Af451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780979297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780979331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ad6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780981016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780985311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780982237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781010180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ab74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780984444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781002119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780986286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780977473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780979380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Aac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781002074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Abb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780978409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Acf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780976734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780975937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Abbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780976972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780976436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780976638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aa9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780976032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781068883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780982415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Ae18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780980329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780982439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Acca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780985180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ad36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780976919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Aea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780978446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Af10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780976314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Adbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780976666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780976494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Afca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ade0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780979806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780977329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780976097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Acfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780976371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780977604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Aeca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780978378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ae4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780979164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ab694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780976954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780978481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780978082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Ab614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780985485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ad7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780988402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Afc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ab6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780984555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Aede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780979731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Acbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Abe6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780980779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ad6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780978877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780981077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Ae40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780981015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780976005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Ab39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780979698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ab044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781002169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780986403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780986275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780980433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780984883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ada660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780977132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aa823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780986354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ac60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780986185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ac42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Aaaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780980363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ad7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780979906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Aed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780986226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780976860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780979221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780977547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780985445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ab14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780977003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780985404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780982565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ad62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780979454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ac6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780980386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780977548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780986349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Aefa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780980406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780985334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ab9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780980746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Adbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780985294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780985960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780976657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ac6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780978725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780980737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780985269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780977997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aa1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780986173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780978373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ae0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780985207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Ad9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780983673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780975976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Aa78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781002115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780976803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780979180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780978640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Acc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780977018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780976541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780977208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780977645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780976045"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780981779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780981053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780978218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780977810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780983862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780988928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aacc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780986328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ac9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780985041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780985048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780984376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780976804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781029706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780977540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ac96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780980419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Aa2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780988896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780983293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780976827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780981380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780980540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780979428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780986255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aa251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780993987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aaaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780979404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780983156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ab033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780985484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ac7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780980682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780976990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Af7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780978022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780977200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780975978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780976748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780977634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780976107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780976831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780986285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Acb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780977133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780982932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780976972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780982679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780986205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780986297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Aa5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780985154"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Ac379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780976980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Aacd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780979297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ac4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780979331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780981016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780976729"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780985311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780982237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aa52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781010180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780984444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781002119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Aaafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780986286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780977473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780979380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780985290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781002074"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780976879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780978409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780976436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780976638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780976032"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781068883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780982415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780980329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780982439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Af2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780985180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Adcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780976919"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780978446"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780976314"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780982219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Adfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780976666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ab923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780976494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780977466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ad4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780979806"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780977329"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Aef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780976097"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ad41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780976371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780977604"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780978378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ac98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780979164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780976954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780978481"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ac05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780978082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780985485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780988402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Ab578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780988484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ad1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780984555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780979731"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Aa3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780979786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780980779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Aa3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780980234"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780978877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Aade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780981077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Abee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780981015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Abf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780976005"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Acbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780979698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ad5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781002169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780986403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780986275"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780980433"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ad01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780984883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780977132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aaa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780986354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780986185"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780989109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780980363"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Abef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780979906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780986226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780976860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ab0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780979221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780977547"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780985445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780977003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780985404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780982565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aa25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780977556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780979454"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780980386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780977548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ac54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780986349"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780985082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780980406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780985334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780980746"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ab7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780985294"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ae5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780985960"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780976657"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780978725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ae77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780980737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780977997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780986173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780978373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ade86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780985207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780983673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780975976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781002115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Af4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780976803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780979180"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780978640"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ad79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780977018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780976541"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780976190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780976324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780976119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Aed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780981779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ac690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780976312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780981053"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780978218"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ab7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780977810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780983862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780988928"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780986328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780985312"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ae3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780985041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Aa2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780985048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ae9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780984376"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Af75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780976804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ae758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780977540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780980419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Adad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780988896"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Af06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780983293"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780976827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780981380"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780980540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780979428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ad67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780986255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780993987"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780979404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780983156"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780979783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Adefee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780985484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780985269"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780982735"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780980682"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780976990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ac3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780978022"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780976555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780977200"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Ad1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780988612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780976831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Af83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780986285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ae4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780977133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780982932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780976972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780982679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780986205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Aef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780986297"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Ad387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780985154"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_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.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_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-17T08:59:14+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:12ba901e472743bd79695772e65a451ac80ac29200cc06076471c42ed0956675\n\n (For s390x architecture)\n The image digest is sha256:33b55b92bbc4790ac37d4c7b11d1931a2240510799c38c1eca5aeb56aa7e3340\n\n (For ppc64le architecture)\n The image digest is sha256:3f3b589bf1ba5601644293d48f27ebf26cce0af703edde58001cf88f25066808\n\n (For aarch64 architecture)\n The image digest is sha256:c5b6085ebfabad3ca4a7bcf4c0a86bb7c1c2454333a3a75859eb0e7b85a609ee\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25201"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_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-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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x"
]
}
],
"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.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x"
]
},
"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-17T08:59:14+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/\n\nYou may download the oc tool and use it to inspect release image metadata for x86_64, s390x, ppc64le, and aarch64 architectures. The image digests may be found at https://quay.io/repository/openshift-release-dev/ocp-release?tab=tags.\n\nThe sha values for the release are as follows:\n\n (For x86_64 architecture)\n The image digest is sha256:12ba901e472743bd79695772e65a451ac80ac29200cc06076471c42ed0956675\n\n (For s390x architecture)\n The image digest is sha256:33b55b92bbc4790ac37d4c7b11d1931a2240510799c38c1eca5aeb56aa7e3340\n\n (For ppc64le architecture)\n The image digest is sha256:3f3b589bf1ba5601644293d48f27ebf26cce0af703edde58001cf88f25066808\n\n (For aarch64 architecture)\n The image digest is sha256:c5b6085ebfabad3ca4a7bcf4c0a86bb7c1c2454333a3a75859eb0e7b85a609ee\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25201"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x"
]
}
],
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:a7030ae2f83595a38c507d43a11232d918988fec2a12bd7bbdd048ed1b4706e6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:acd1f4c3748eb6189d59cc41da282a81e8949be659f882e241e01acaa25cbdf3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:c04a807f8759be6c847c8f6abc07d398c781563b216abddd198c07ae32c3c467_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f451c542472d35f555ba7e0ca5fe6ed5cb35b9fc0d915ed32486f1a0c7b361dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:37dad142f4de244e37a4cc2b932ea9bab8fbcf7663136b59919b8d4ed4d8888b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:77e0f36aec56da740886d70e6e9e45b5eae8a4641c11a3584f5ec96cb4c12c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c4c865b5de7ebf517d667466f7af1c3c2323feefc9fe456fe14b994914ea45f0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:fc741e6ba3a635241261773e48711d1668f5da1eb435a75db33163c1c4725def_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:4d84050334b5b19a7ee4e59009b2847f28543e637afb7dfd6c11636c54655809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:79366a89c1a9d454d121ff6f24a3f7c3f9fee2e1441d0d67c7c5df9d471c3057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:d6d4776004505cb4168ece720f3cd383519c76c229c53bcbff27b4f62fdfcba9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:f230ae41108ff58cd2df7460ddcab73a59309e5c7c4ca0c682992e4975703b0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1ccc1d63820ee8fe6e1d60ecad3019d4fd4311d19859a5ef4ab43f50c2bbe68c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a823b2c4412366f8c9c7baa25b6dd40bfad4eb90b98e2a4b064aafec740f9924_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aa8dd4b7f6289107e6bb9313a0c3dd95fed0a78a60a3bc6761ba101bf49267c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:d51643c52c7f7850b787439e79e69e7e15fea01d38fcf89ede2ffd5aa8a0a6bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2271a35cbdd6e75128ea40780dca8b12acff72d89b8e5edb659df03db2847ddb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:50815dbd8eeb6bb3de2c72b3747c700314ed3ca55130ffe6bf1e0368ac55a40b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:73459be1c7c70819c0a0b7ef2e41c4f7c4772e24eec5ae382fc938a873e6f706_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:abb274b9924c701bfd460bfaf347842aa1c6e6e5ac13bb67a6e8e13aafdfa70d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:192a0a4c23acf7745a9cb39db76a8a8dc351faf385ce96a51e3789b9f51aa93a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:64dd85148fe0c37c97dea17bfde5d6bd28651e85d38dcd032ee6a6e0d564f20a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98803d660cb292a0b19a91c024bd8615bb4b6304b6d5ced3230f164b20fa5473_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:f14489a778119e4a3e2d24b85887b8c732d273b06ccaa1f3c47dcbfd593f4e5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:1f7da1d39bf1e91447e1e88df1c5e804567619b21d4b9b6b5bd3986ffe73eb05_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:7f1abf185014eba5af23da250feb4cb6ccf36627eda3f383172b4ac24866285a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:9167cb67240069de0d391f33279d036aa95cd53c4e90b9bea9919c1121f69a30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:99fb48017ba08b4218d540665c8a2c5020d3dd3bb49241a56bd136e5337b9c83_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1f82e411ff1946e57925f552c6dfbf1157e623ba62ccfbdf1d4e07c3c76f24ec_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3d76f8f385f0225bbd4c2f123a1efb80014cbdc3322eb62122579c31065f2475_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:62ccd6215d94e446e9d72670658341a4f9410005ae77541ff628ea320a3e4e0c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:8ad7ab11e18a556647a001fb94a1713fc73db6342d5be586e6b9c5cd85180b1a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:6bd70b036725a8a6805ec024cca61da2b1bf3900092c9990f44064bc1ecb7835_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:788240bb55c133461df4770b2acaf706ed308e53a3ade4c5cfc264deed6446e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a731b7a16f277bb651b12e4dbb7b91113da193f13bf82f50c7f2a2cdf35b546f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:d99f2b70242f93ddf6773dc339aa1bf75bb2ed1960816ca81206831e477f59f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:07c3fb5bd910f7e81a2c2493b02e87059a8dad6920524116e16ff1d022b9dbed_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:778cdcf251d8265e5678c4ee2b9d639de4bed9fa8b649b6fabee24234c5e72d0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:9e25f3f39d6206b8a0775db0fa2592de5a0fb0825cf953051f434df1fd71cb39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a753f2194d3a242aca4fd665cd0b03fe424185a4bfb4946d227f46a9b1f62852_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:0af94672e9d21dc0de6cd5be9aa989fa11b702be65f1fbed7949cf0e69a253b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:215ee3722e5f0e138c17a40c1a2c72e8adf4c260ea2474cb5101d674c4b20ffd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:a5325f3d088c7a6a96d9160a7d88cc3decdfd29a12cf9a5e1b622412baf189ff_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7a59b159989422e6cf5363e905c310517220af021844734c6c2d30146416450_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:30d9b1d57b6f99ba33574ba7a98553bf889519f65c039c5b714342839b1067cc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:360fe7f80c135a87f36e6e23a5a129d2ae6696243bf6b448efbca03996751b91_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80498814b01bae249447f70402a7a1797c04e7cf9fd7ebb478e12912706440d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acc63986c28f4ca24b2efc2eaaea748841a1cc1ea4014a807ae7e3f894dd0bfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:23eb83f18d9937b0d59a12c3ca2f62aca7f0da57fe56915cb59a1fc38ec55c40_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:2e60091e466faf801773066fa85d17fb808d531112d118a641526b578719d991_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a2597c6e1ec452347d977bca5077f9493a32efe388f4fb57b4d7f9865cb48e7a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:e6e0147dbd1c1af919da7d83357bca2d804de41aed0856d056bbc9394e8e4b7c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:079e10d6f1763da07f277bd857026175527f4f4474534f57bfc2871ef4dd5010_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:3e4cd5cdfc5f0a7faaccadf22a3286d853e4bb75077c363b6887d25b7e1a5118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:7525f9327f18f4a078fd04a7a3adb493b2b1805dc124d24cb05d2256843f9da1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:a251a8c1e77b6b5d4d8979d4f8a8de20c23363753091cd6f9cc077eafdb92185_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:0ca0593d55f379ee3033f2509e1692bd3e26abff765f8293f87c104acd899566_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:a7fd25cd3e54c7cd19d9000549696f9bfc98b4c5d769e3b8da83a4107ea15eda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:c98b64e4d0bc04f56a84cb7ce0eade14aa6cc09ace700b296d488b97b8de1006_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e4580275c9fbe7e7c4f4e41d577aaf9bd51c519f29e93e9dc436ddbf34c7d266_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:4d3c07d64d81e9b7ff3fdde9a57fa6549f088e5a96125e91f3007116d20337e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:557e38aa7e4a4587275c7399a87f7d71997a455af38a53cd9596026d5cb41146_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:9f46b563fd306679cd8162e0c275daa4767f51c0083b1210488edb88976d8839_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:dcaa5021d88e1321f1873715dcf1380ad3379fa96d222abb9450d148021b6930_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:90c86b3339418a8d201444592d378962828eda5c92cfe006785a9bc635ff5ba4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:bee2aa67de35ab4635b353061b6c23bc68c86aee8cac9cd1f41135e9c066f473_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:e40130b1e2a74e2b4eb451df197248f85db457c4e50fbbaf8447f8d9de18363a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:f975869178496b63072dbad1b51126f9254e27549d8c9096359e1ece529febea_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:b044fedc80cc4429176e21684a6143228e95cb817d49df83766ef83018a4ad56_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:c1872c649b93c8b262e052e39292236847a4bc50c19d07b86c8644cb9faa914f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f19e12c21b03fefe2fb73d17784dca980061a3c0a7580ce437173f6953992c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d75092b42069f043e0f39912b1c9800afe624a0d5595ecb9a3ac390c65eec7e2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:25210aa51905881e5a33178421288cc589956b0802b0d3f0fe498bcd71f6998e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:33ca83123d3de585db1facc376a72c80fa9992bb29060c8d72a62b86a5f29c4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:7395ee37fc347a402d6e90de9e18f67f2abebbb71f5601a3e1325f9c0e13650f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8ee71d775deba549daa69545d7e1a5beca2805fa7d2267754fec57827e06a4d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6067a2852305b2419f685df3890e2eccf5b81a5f6365ccac369bd34470a84357_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6f20a4811133c41d404a1b8a8702674d55994ea03009c621a21245fbef890906_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:9221ef430d8efd74430db55d41ffc96e8f03284fa4ad574674c7563040f504c7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:93ca5b2c341509449380a1b9fedb6e51482955bc0ec9805e3b3aa4ad30fc1c22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:0a7ccfef1c0a4082ca3fe4c3cb93e514b5649e661e26ed42bba26fe346781ed2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:3aaf87368d239c36c222536f49e675b0a36151afbfc637017ddfd7f871e192db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4dccdace02daf6373a6f4cf4a4e83257d98557831201e7e5597825f18fece4f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:881397c36a4332f221dcfa4eb517e9c9190329af9009391b96f0ceec74e680cd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:46da5adb548c744644bcaabf6409ea53f213d9d4157c6bae8e0a3b741ac8c836_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:53bacfc10ca07c660b142315c44882d77ed3f02af6405d7e2bd36fb26b165b97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:b2e763fe91becf5be1cf036062030cee6510af8524107c38b14187cded57d059_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:d01d3b7ebdffccbc3f0333585ef3a01fc910115a4bd77ce3fed8f85093a31e4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:02f532a3c278dcd2c26b783d2cf3762b73b035f9b0d37d8c5cff066e6ece07c6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:87c6caa70fa920e0a58bfc370ec7d6454c145fe367d6ce3f34ea3aee3b6d4311_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:d441752bee65923bde0f5d9883afe5bce6fdb0abea233ae6a4458db4309e1115_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:da660562d126ed80f4baa3e45df65a91a9ee75d40eaec3f3881e7f61df17a92e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:48638fe0a5f09bcf2f59f4a02139e10dcc77714dfe8fc10b86892b9176148141_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:589754420cffd7d27505af843442b7560d9a4188f7f64ed3e9a35c086cd296b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:79e41ca79715a571526e53fc13caded867e266e74276e632d1e7c28c71d78360_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f2658b6a8db6e6a7634453af2d1cb48e0078abe4d82f4957288eca0791462c0c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:8c923202184bf124cef516f43082ad3381f921fa1c67aa7b541ac6aeadec2d2e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:97226555f60c106944d99b23bdfcdfed049ae13c0e8c97b0f4e441827720088b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:544344c2e9020efbacf4c582c67532ebe485656c36ab314de95bfb9a0047ebde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b6648aa5ad4dbddd1a0502df8da0c8230d3a8e1bf4311036e9bf8f377976d0cd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:04afb17e0637c4528bc8e50caabd2cb2df9b1e50c5749e958418449faae9fe22_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:8379f38b7b8e488e7b1b170e290af8c604636974e0df590429440f532094cd45_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:0100c82d9078fb16dbca67d3b21ff54faf56351dd684da81c4ea2c064a4413e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:99a30147f37d481ec26054624b727d9ba1076fc8b4e5779e545d2e3b7925d9f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:91b7a3ef6622e4a2fe2142c128878ec06a6fc6ab39f8090d09e99e1689b9f2a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:f3147e25f33eab3567f3dbea02e9cbca9a43597a3cea50c6fcd0f1cd79ae209e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:161b66b02d03b0595114914f20ef9449e495d4c70c8af669ddba63dbabb3a564_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:ea7e766190adc6092cda41eec6fde1b64c9a85f36a2ca2d5c965e67a096d16d5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:56b1eecff219fd7deef7e45cbebca688475c09815625eed92856d74f0675cc01_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:fb8a038ccbb2e46ae733ffb7c86b7d8cb33292853eca765ea7a8482cfe3683e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:272e0d5cec07de889e143904a219413930f5ea3550e2af915740f059ea225862_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fed89393209bc73605a2db49ede008f547509f7714d0f8614575f117badcabaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:0b7ba820b7334cbdbf02f6be0bce7bfce66c09425a3846e4dc60af1e04a16e62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:c70f895e7c27581cdc99c52ad2dd0c3dd83a7c18b232ce5cea4514a5f505daf1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:6d123e90c3e0a4dbafaada8b1b0fb0f128cc4a70c381674b9df13ace463f88d0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:88c3c0650b52b80e7725d6b653133a5421472047c98d8f16a23b43fb0dbef67d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9a66b8bde7a17514eb0b67947ed846ba8a2336621baf1a22c896496e7c6296bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:cf832c31c9cfe6fea9d9bec83883bcc652e4d405adf56914baffed33c6311533_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:6e78f24bcfc3f52037f20e40eda5a05946e152ee98573fe960895b1ab360d9a2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:93968cfcfeb07c864886de9508e5408fa56a872bbd5fadf6a20d7ca07654c880_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:b6867d29acfc9d3477cd6b4b302b72073eb99a17fbeb9672581ef9e9ac2d8d26_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c60bf917300f5ff059623c7a5334a1ec2d71c90d7e6ab539bc0b6ebe06f61b78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:0fcc7aeed15f99c0e2b8cee46059eb76626ce1a40bc233a73569a1f9f0a1de19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:1fdd4da6fbc7a7bc64ed33e515da321b566d7fc58ca403ece5b34b3c0cc53a71_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:48a1ea628f76e551b73ee773ce9fa741b60278034659dac8dc1333d9909525fc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c42c69b265cf079d5546e4832c4d770bb3d78883098ad004e57b4115a5e4990a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:18f3d2ac2c667df294752336cfa5fb0d137a28349789e4cb703636318e6cb7d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:716297a34fdf6be541e34b5a5f2452418b27a6d810cba6b7e8d81e22aceea5d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:824b4a9540976d5629148192a78290f5dda3f3a84864ce49ed07c2ccc00774f4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:ee8b320b2047e104412603fd5ae7812c65e92fefbe23b7dea980e3a058eea63b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6be22d8f91a5efe043040370b651ec13c645627c16567eaaf58b736ec73bae3e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6c386efed5fb973e4e5cb6ea2eacc8968e2fe92f9dd7ea11e08f3cc444dcad13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:aaf6525182047be0049b680e4471d3b5dc518940c6d99396f3cd8922d3771a9d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f0ff71e9fb5490f48e56bb355bfc883e52c5b9e97b7b3997f97e7e1e01fc6a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16adad4fa643e6403dfcca964ae82f52be58ada93103c99e935f0dd7f8a8ce19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:16d580e98a6b03e236381fea8a3940f7f55ef5cea9dddf83f57de4f2c16d87c7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:7e04c03a25726e3e914f29f4106be2b38f6d91e4c4c96d2209e894ed5353f14a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9be92ffb22356b143f24c2e1f569a5a6022561cc9e3c19dfb9cb8d884b4b430f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bb8e87e8f93252c758b06275b904acbda014a05369a3a8a48304025539c2a8f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bef63b16132ecba605aa046e00966ee6ec9a37890f56fe5b00a9e12fe027121e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:bff91da1e8a557dc8530731edc9101af2de09463c51c374e74e92d2c69bc3f04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:d7b6990088be37254ae2d8a02948704d766f4b8d08918c4a998a718757ee86d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:18fd4650bc77f056922fa227ee075e493616df6011bb31b06498ad7aa121d13b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:372e2b2bd887a5ba12a2e7187fb666fb167d0a0c8678e78dc9e6263ebed37bc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4145daf13e987912a5ee4bbac064fbf0888293cc08b114107133eeb9951204a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:56653f02f8d5d9eb484bd9157e4d6418657b2abc8e110b766553a98db41dd74a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:457ac9e201454878ce756c731623f33ec22e44c9be6e688931b5559dc3d060db_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:aa23db754237cc273788c3635f4f6dc7a862c1bea9a509621e1db9cef5dee41e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:e7873c9eaf9068c96b6ddd150a51dbdce7acf481fc29106def1c97b359ddaa4b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ed9b1a2da0483de307ea30326c445cd0fe4dad0857d425cf9b8f3cca9b52b64a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0e863b2c42d0edc7ec05bc807f2f6462b7582ef21359e218094924c936169917_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:1511cbdf101329ed2a66512956ae7ce834a6ccda253bd76b99a48487e9de8fb5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:41e3dc9405c521149919a24892af006bb7c06f800fba261c5efcd3f2ef461580_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:b0cde443158a094812ea67d7c6523464b48c695ffa4c6d9162ab45647a119a3c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:4ae3d7da6672711ade9e2c9d4159b7aa327e8227bce5c87857ced4f10a4bdfda_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:51887eace4c7a9d40e7cf1a509d05760340fcc9117238abb82f7541e2855396b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:52190fa0da838b24980e26ef586ade36fc1bedab5fd057c6acd5de5a84b68809_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:eab6e4a898be919f8a04dc9c3003cce301f27e872c0520d1d0b634d0e3e9f461_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:509cbb1fa06b90af926955a2c724e81581d05169e3974c3e77c87ce47c53be5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:6be6367bd1687fae656afb87e98ae838126089abba3dd62b1f71683fff7739af_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:94599479d60ea6e70ab70389c58c21e5159ad81ddfd98b023290009be697c2fd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:c73ef3d57149ccb496a5c1ab10efa21d0c1ae73360323ac24d8f61f2d3b5dfec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2ea0c42b0af0e9622c30701c2c30ed86d577ef8bf3ac8d598e9baa22adfde899_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4c56bc7a31761839fa46cd50bbf90989d3313095bea4cb3bee95d074a9dc2963_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:a96fd264e1b79591176e03632a3e3ff3a1f1081ea5144f188eb7089083204a6b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:c379e2384917355019fac9528027a71fb47ad3209665dd3d596598cc6d6ed6f6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:178f4d3b2f63adde85e32729fab326955f1043471079a0599079de31e6fc6788_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:3b1fd3e8fb0c8ec48aa741493280e249f5f3648ae85f4344c4f5cb5196a068f5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b14875a6d74f24bed2a0777e9a0f12905dff8d703581283dda165b86a10017fd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dde63d7b30b2e601746c2db054ad76e4a08c1fb8788df6df702580cd4a5cf791_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:106d242bcf5949edbe9d5afafa2e02c7b37267e0d5a0df3c7efed1d37fb3e2dc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:49bdd7999fd853e6af213b6cbcbf7443d12c55bddd8ce25846b6afe31ec01d47_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:51d52f0aeea8e119cf184ac017694e1c7c09a42682343dee525d6662bb746d94_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:940efe54180bd892583c762d2716022647095c7aada14c607a201d04051a2b4a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0c80e9b2df2ad98d98e49112fc9f0b7c556b95c67edb5df34763e37ac804cf73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3a0cc43c6dfe27e407a1e8cc56fff50da88d2b950b7f113b52dae3eebf7fe9a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:5e154688fb2359c611bc8bbc7471c05d7e56717aae61b7a591e75b2f9a52cb07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:b66eafede022d39b51d22b77c6f5db46a588faeb3bf8ac2fea3539731682ac77_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:044e74fedeb114239e7d1205ab558081b8c9aa521a0d4eab5519935eb9c34182_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a25239501706cccb1e4651398866d85174bcab42021c630bc4daf9a82f48f19b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:ca4f075de4f6728a2f46384b835d2223dbe223db2831e2badbe182b610c7f9f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:d62b98a8686e42f46984cc839841c913ac9d501d0481e56fcab28bfa673c5e3d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a77a38153f1160549fef7f2d4bd0ccd9289407ea9221bd45db2bfc39875b45f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:60a93e9fdd00186238831580ba6f90622ba0d11b70bdfd4dc21897a6b97d23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a6d11ac1280e7d753db911729fae0b7676b6ab494361fa0e5ececb701e298515_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:d2369278f5380f2bcc3eb360fbeb4e29892d4420bd09cfb24513ca764f91d9cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:174979a48d708dfa6665fc8466150cfff451efa6cf1951001f9cf297a1b8f5e5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:55bda2c7c425ac8b1bcaa8ba8f056771fdf9f342eb6d23b15793c9693fa0d7a9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:8d3d2a5fc42f45482223e2ba9972ec2ed6de376692d5c566d4126a8044f1d045_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:c6230b6e46dcb5fb0895c84fc0dcba4a10fff465aa8bc1dae1dc5dda7cc2e567_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:2676615af9bf8b1465181d2fb58dbd1efb1f8fe464675b2edbabbf041b774079_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:3c22d6e7c3805642fdb145e55c7b596b71cb458ddbda51b6f709dd70cf5bb6de_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:40f5704937a01e7c28151f60d76f33e95d3b18d511893021fadbcb8e832a5e3f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:483eeb4a161ec7fed8515247219b94a2c40980ca788bde992bc5641fc1b91294_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:7190599f72b2cf0663606c10830cf2759037dd4de06cb13834dae7378db980f3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:761a23b468d06cc31245270b53fca2ee9538c3f5734cbcbced6e5e43469ff76f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8b4c4bf466d29b02d08346ee358980105a204f51e243c733711f88a1aac87c71_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c54c34360f1166a7c42ec1b181331c31d55306f5b38958826260de94c9b360ea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:73eebc52df8056d5ae2bb19e2d0e2d7da83a6e47e276db71f7d26da0e50962bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:9e90309a20bb143a8f579ce5fa26e36ff107ff5013f6fe2ca52d4a5dc28a543f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dbd4c3ffafa0d8a58c21a91f8c604e4ca913064e8c9050af9133c61f7f8e5831_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:efa8a7c783451835721df984e0357e521f17f3c0235408604bfbd75baa53b77d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:47093e22624d6ef420aa80ca4e934384bf59ed1471d9c083f170fcc4ff7d62d5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:828b37adcffe61dec6e74ca5380f09e638ab40cc2cbaf3eb0c461902356ea7b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:911568aa124776b2b7a4dd01b5a045b9e5109634afa9510e250115cc9960652f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:b046bd3e394a968b8bff756a1bbab6203b173963372097b4e9bac2f4eaa8656f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3cb35d480c31d79278f2e74d16380d75c9dc8f36e4208649f5db223492fc51a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6cbd72c2701f8256348c3c0d37c7006db128cca44105634436a9f9737afbf195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7ec2d54b5022e937803ce3012a89250b224a54384544ed01a16cb27c00d7a00a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:922abf70f2e6ad57549dbd78523d198c970ed585bfacae74f0db4f3d58a234f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:5b47db66013f3bf649898ba62a0bd386e82207485bb16c1203f6870bc4bffd48_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:7ef973e320a796810c7ef62ece44f84d5382e158fab42980c6a3fadfa42f686f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:97ee01f7cd27cc8e66e1f3da6310e668ce4e0fd8a948d956f73ba21fd81a0f6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dc8cd1c7cd4cf7a1337c485787a312a285c64489f728aa74cfa5fc380d8c6112_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4abb807bba0bd7910150a5bad5020de4077d4d4500b92cfb397ad5789d37cd68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:57e6cc4931bb4a870db12390932db4de419bd8df05865b0d1b0b87755271d045_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b9d7af15ae74c5feebdc7f46eeadb20ea1e465804eb776d342a19a983375be88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:fa90b0dea8b7c0823b9fd0ec294dae694ffb26950cc27a33ff26eacf603fa9b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:30ad6a83a99ec15ebf628c009cf0cf4faec5b04c5d053fcc7ccbcced84f0d809_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:642d49376a33c6e44a7267ce47ca05ac9f48ba4b1fefb3e49ec13a47ef87f809_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:b7c9a1f9c8b7307c2328846b2267b1041516b20f4b7010813eca8e7841c7cd59_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:dbdb7d1b8fea71975ee17988f36976bcb1003792ec962001ae4aaef37193ed2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:255023a42e94ac306891575c0c3f8bcc45c1ae952aa9783b6c2b8aa98f56b20b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:77012d8624e45b6f08daaac3949235e15ebdf4c09b49f6e66b79f05f36ca2cc9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:dae0604483279dac67d362d274de80cb3e100fa935ca50dabdc7dcc436b717ce_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e5b0ecb3e20dc07b357a33d1dc317c6a521389f6addee2e492bbf2bd852b8c9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:207751efe1aacbd87aec83e9df0b4c48ae0a985deca07e32d1a8ce5a1e013a53_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:48dc2ddb716560f09494b9d696053086eab77dce31bea0f89532d11074b3c6d6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6e4ef72aed8a27f921e339cc899c84e094c2a710f7a00a0602ca9d03cff31e91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d78d850c77386a35341624bf3fe5eed4d92ac41a5e6a2d3f2a68db6de1a64087_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:3eb650f1c43a1833ee02b2218336c075456e26190a8ed9c976680a20d83aa55f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:64353e912653770012896a153103b6fcff349ac40f746cfc36821fe11dd6259a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:c6fe274aa342cf850b2ea6287c5c335e93bad4a1bd73a0cbb2a7c789eb1ef48d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d7730eb1cf5ded2a07a8c93369e1558536ea5af5ba35a23f3046946c89b7368d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:03f8250466cc5d3120aefcc87f0bdd4d12012d6a116e419c382d50a21760aaf3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:5be6fc774ba62dd4cc689d99bacc979cd181bdbee9a221f425c5266db6a62784_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:aeae1b0e5fc3faad8b9ebe64d21e9e14c721323991fc76b72d39f8a7608da870_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e77c5040e44ab07a456b37ba532e9657f879dcecb7879ed9e79d8b0e2c6c8f23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:80b208666af68ae1f11b5526ec2d4e2952a4f33ec109a054519219c0e84f4cd2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:82b5a2010b2619bfe1dc1a3763af5c642e3c8d435dd7b91713e581f267dece66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a52e866ebce2cc46c05ec89f571f02b751a98351f1c7c1475d38bd3bdb08a76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:e295ffe236c8ad5c1b4bbf7610d9a29f35534d6b66619cc341db46baf6ab4aa1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:1594e9818c4dc1459eaf50fd7ecf2fca7b73ae81be70413f6fb99c143f55fc98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:455e45f1174b4bb5db753da8b2002b40921fc0051f462c0f7cc0cb95ac564c62_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b74d75ec982d2c35bf2f67a22eb8cc307ce5c995134e88b0ce9513df79cb5eed_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e0642fed946e365d50162ffb37121be194ddde7f422e022a7afa7a45be84aa96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:1f0901c738cdffe9f323d24c85f8fbea95ad36ab31acccdccc1b7c973fa7fa62_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:42903bef3719a65b7e7fd89dd371c68baafc3b2f41b68dd972429185d3fcdb90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:56db80905cdd80d7ef3ad4cb8e0620868713a31853dc797db397431af032d322_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:8c340f2a030c2285afa19fc9022e14a07056941bef8de59b25ae21ff4c66bb9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:07284eb00a28180c2e4773ed2da15026446ff555b47307e0ddfb707766c9c420_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:1d5764ba30e7e1058b3f2b10d1ebf9a190b6b1aebeacf774114cde8fd5b6b3fa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:5b2fc54522c109221ecf5f2f25b34bec50bb71eb1fb13677e79c047ff92899e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:88bbe3827720c373b01bf2fa3c3b8480099f7c9058fd6424cc57bfe74143fa9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:5dcebe96fbdfb5c6ae5d86a985c3d4c7676cfd02460196764bb1e4281b77eeb6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:807f0619c241b7b86a253efd0b36b1d3dca0a19b4732139d789c5e6618b4996a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a1283298ee508e2282a0e709e2ff32c018445ef707b155f3679703da0a7b143a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:aa87e88dc29d54aa41e34a5ec81986971fa4d3c53a33d6fad86527ec422507f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:03f28b40a92d8f8abbd0d0d09fd080c5928ac9cade01e28bf2c683dd500797d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:1d18d242102246b6cce19529f237b536be5a9a5c2e0431eb15727b2b90e3d888_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4ad31b682a179a9f46d566301411cc64e1fad11ce7f2493d73c81c9d77e7b38a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f76b5de9e7ce8194cb453296dfbb5a26fab5e9f0367eda229ea3c466cab591fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:3008aea10be9bf754a1a6e0538d1df3f6408e9eceaac2e0cea868b40c5fff12c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:53de5c7759b3b0090ea994db28ab745c4635f21f44266d5665076c5c2a553468_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6d99d80ca988aed5a3cc74e6018aeda442f0c5cee4b033d13e9e6995b65a5ad7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:aafdc6bd5cefa7443745fa3d40257b3df385bc09c1874ab34796a874273a21c1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:5385dd16647e876699858b01b78bda82d769195e7237003621dec0c17ea7486b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8d82b00af857b1782bf0d0531c76b83c1d05ffc8d8b0ca1a730958226baa1455_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:93c060c1504210f495bc301a123dfa5e36ea87282b8a6d192f47c8c8484b3172_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:d9207728b4fbde7442c8b4a9fad3f450b7e2c6cf0a5bd203259dcc4e94106d04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39c30a1eaedbaf0ac3ab12323d80529026bbdc878a38981bad392602cb1ba438_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:4095317e942f7ccda2d3d8a5632683cdc92984606f25a90de944e47643333019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:873761b15f7f5e975f8ca363e088b806e393ac2a78214a29050b3102cbb04df4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c92ef1fc3eb4dc56767923a43fc75ac743c13173e2eefc3c06eb762a38a08629_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:723b1caa7724b4ee065ddd187e259b4eeb95ca3da87f29d5e51f532b3c29dd5d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:79bff52cd5adfb2cf36c64fdaababcb0fdf4361e9bdd18b51cf4502e2413354f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:89bdc2b084964e95337d1b06b7b3e74d9070e8da7b28ad34dc53bc85ccc603c9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:9c022d71700d942bb819bb1d489925c1532c1db71a5aaa268b855d678e8ba364_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:120b1cf4552db536915c081e92372cb83aa89d21a81adcdffe09f2dd3ec5f43c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:1b574dc3b519ff20706162d18bc6c2d9970b0ebddc7547a9db809aa9d3eae74e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:3fad488f56b9dce6d9b6627c6deee5c2230287828dc53b96d5d5f62943b57737_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:6c069eff3037f67444d6ba193d1128e064c4a335fc73b20d6342b8fd1ee05107_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:25735783825c67f2abec0695f666552f0838f10467b027fa1e475317a14dbd86_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:417170e3ef223badef0bc4702874b350edb0542fc54f2d85301846ef4d48c1eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ac836331535a29128d1cdc88472143227965ce06b994072a39d407121f49e613_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:ec16051b9ce0b0a489a8b17bf581b0799cd5ddad84b1786ba77322cb9132d055_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:13b9c3e4c334cc245c11da77c7ecae4759986873fcc134e3a2901d1979bd97dc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:6926123fc26183a63626f4f33921e2a24cd8e27f6f2bf135c80f1e45a3200fb1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:b614ecd78191da979aa5e6de4904c4b45d71fc0820e2e9695021c468ab2d0522_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:f60d781814b6cd8ef503e85c68d1745af480fc6e2d74e2b52521dff292e1748c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:40f85dd555fa6fa8934f576e5a5cc18df64c4cc264c9c44cd9b260d82e7690d1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:92d1062b43e34737bdd26b9ff74d92d43b64a699f1e2c1275ece8f6c9b1478c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:c05dd77c9c641c9139e761b88ad358023c6ba4221a6854d8b0760732889d58a6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cf9e05f8cbcf5c64026e9dbb830a9731a1404bdf47a52563f61d07bd4a51bbf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:1482e83688d25af51a9dbb93b52e652d95dbcd7cf4a0d9d2c9364fe0f0ff4404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:a78e4acce67f08cf4c2c48ade037c43b358ba69f5a1ef82cc5f94af99c59555c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:b4d0b3d6a24b94ccd6605b1f62b2c60c208959ff5194b75d6c25d54df7137e5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:f592d769515366401b273d9b22def9660e803b8a560496015f176d13371b96d3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:279b255fc3bdf326d437336ad9f8d391f02e7c934c160886339778f057df78c8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:7579da643df10fb9c3c5784d5e06b3c940a823158b595de9fcb964a8d69f215a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:bb2f77f5bf96fb99626ad02c0f963a6c862c04a7a7162a1987426c2a94ac685b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e95704530a93835413e0945bcf4e2e2473fae5e1257665f5c1ec4b30b36e81eb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:4bf77f2090c7ff486b87a86cb2e619015d7e1ee3ec31e3a825c22154be80738c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:6960a4e7bad45aaac838b0497a2503e83d3786ec78be154f44567770b82b3527_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:9438d34a83326c0fe5f167e0568349f931dfc9646f1c70da69409e350875ea53_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:cf4f62c2815857254a395a0034d68e3668cac219bc2e08e8a9e130034664a957_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9b3d6981af468b90d62f63f45a22d2ca13136f81282b971c3fe827a9183025eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:bbce40bcd762ed1eaa08e19ca0212121a597c5c025305a552c1d5aab32c867ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:16a12b3a4a4ce3abb27fbed591e2742933d75ca5fe4a5537d82361b90918773f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:2007b429c7952661629067f452b4a56c5b0b6f7b4755b5a7433c1b6faab6d419_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:957530099959a421115260f95ade7784c64b942916a287cb3546cca79763d55c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:975a1cb86ca8e2894140c93a96affde0efa449c772043420886db12339aa820c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:3233a1897941a3b7f05ba46a8fdbd150a2b4c070e443db362afe2bbf7071957c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9b55075cd3a91c3f18c6c308019ff67dbd3d38f39a09c7e9a5e48608ac908b38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a9bbfbf82188d91ad574b5896f305c4d7b6d8490c8920efee82d2bea49d0889d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ec5f445423fd340e1233722b53fd083b74da21c9472fa768b175cfe6781e2afd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:103ef4d88fe1cf74623a5a9cfd0de45372b032b4b12ea3a8a909754acb2431dc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:a366221e21c5dc12c9df861fbdd6bfd4348a8c986bf43e38c4a085be7cac0600_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f264663a2869319733b39c90b352ce25ccb35a15e4b17461e4f74653362c4e4e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:f4671b9fcceac63a6547b544d189a85c397e6aeffc6eba38d6e8b7073f258970_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:2df3ecea77577d06ce7f57d8f010f3a39ebbba90e350ad9720b84ff6cb320a4d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5754bb489b38e536c93264a1c9c1b68dbafe3923cde8a748a4b9fe87b759d097_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7c31e1025211affebc55acf8cd791b0d5240728bfee060914d130091a664b50b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:bd7abe39caf78c2962a37b121a293ef9179c95a5b30ef531cbce7483f3dbb108_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:421e53acd2e915022755187916086964d39b2f64014deee49c2e19208f0aeb5d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:43af0818e577746ef7223ca5d75b90785078c290f5d3770d551b9965d1706c87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4759c35a8e51c247501a7b920db373eb6bb3c22ee2a712a9030c2cbb975029e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:905a175fbbd6c3e81dbcf8c9192841984b0298f06666168a26cb27babe1e2893_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3146de9d4a8b5c98d8b9fdcc7fec4392f1591723948be440897e6ac16353b096_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4b70ae04dc8f4096bc37bfbcd02bedba1a579fe133177f674607f18fbfb3128a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:6f45aa19891117b7dfb96ed1d5f95025423f62669549fda2114a889b80dca8ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9d547fb14df2df02bdb68abc2153eec1eb42cccff0f706127ec01cb82d661e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:30b8fd94ea4d909cc4fe3a4f21dfe44515b2dcfcdcb7e5989f356ba5df164c02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:798df44d33c1acdb59938fdf4d0251cbde8cc47aa6a03cb5b3a77160344d56cf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b0730058c0266867ad428b19054335ae526e0d9610e68256e6e921d590b3bc66_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:bcb2922c665d069fca260451b5366b8c4b04ef82bf491443496519d8f15e34b6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0fca8a8cec5e7313576d38c866b7f310492fb11fd94a93d6ce8fd311ee424dfa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:494ab165f12ca1d2547a13424dc7a5cb8ab74d5f4406d46a21d944ab49425ce6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:51dbf8c399cb661c59eaf27c7fca8a08fee8b5651e1a023998f16e4c87bba3a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:d7186ccfabcfb1537e42db07aacb004ffac5d893e8e20f1a909176952c4ba00d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:03d45c9ce7fa066c430b348e05cd3560ad596c6fa93f7a57191f3adad9ac71f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:17014fa590650c3e7c49820bfda285fd82f22b5037a54c6929c3d5712a516c0f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:811be7a889fec8a5f7d71c4d77e2adfb2a1928fc01fb7d4cff316460677e9dcd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b694b8c876fc29c8090521e7ebc2c02be88c9c811c9c1734c79d524baaada9ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4b672f5cb7e7103e1304c2826ef5270e9f47a137454e80160df8414d7e72d76e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4ba97de4f8c46097b8179e1ffa898e0c4e29c96a9abaa96f5f8fb502ff5ce692_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:be6a2fbac7aef6c2b49aa03843796a2aff8f242a76ca12c8bdd97a40f3b11000_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:f15701dc03ae43a7857a1a82be879c9becd99209505e5809124f62f5056475eb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:41325be18bb76aa696d2826184e898f49cf7f29a7077e8c1038632988b3e438e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a6f75279627dd89b244fb5fd01a630511fe1e5692502f9fa639e43315be7e3cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:cc31499dc776663f8a98c401ea377b4476a3dbc3de201c079b326f291117ff2b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d79804455341fe8ab02a0e0b869e806821462798772e007f03f8a75959debec9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:188e2bc785e371b300756eba797b8da911bd5115f39820369abcbda1da919393_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:22ef77cc4d255f6dec6a74666990c61544d82aa4541821a1ec2db93e3473657c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4ddaeed1f2c8c64d156a91bb4bbe71f74f590d699ea260d00fa29a7d01fe1d61_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:4380834ef2ab3a558c8a3bd2cc77341c72c7b2ff4888be85ec6fbd444d6c7f2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:63024eecf989e5597f5fd2495a404b364ed9b7138bf835fb3e1d851a34d41d54_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:cf27951838e8fb93d4f05a8f0b1ecfd7c3222bcef49e14a3dd6a6dc63d0fc260_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:2f33e8c871add512c85505c2c5c81267e7b35755653532a20028e89f4b41c2da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:96c40575ebd38e6ca166fada51246e641a7d5e9c7b00bcaa489795512bf1fb3c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d26622a1d37314542981e27eb616bb5cb316d7771c3b165921ba8b1c7470db14_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:057f39bde011e55246763cc5604745d80c77918154ede243554942bdf81dd068_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0aad450e7e40f1cc93ffae16856cf5de5acd1662371fa8c62dc00ebb6d4d11c2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:d7b45f165d249847759289f90b18321cbe8c0a8e972b51e354f25a94fe696f25_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:77bd75b7bce7a798cdb11ee0f7d6c838e59236886567b4e5148e4afae3562073_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e18c9f9197b6b92497638426e8e91e450c1a3ea7b95a7dc83645c66017980c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:c199b1c123b4f5a26754f842e9fb1d046549deae99856f5f5db2f5d1195094f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:e18c5c5992f5cecfb2c300b9e7cd3cf0b4175a4e3f4e3cd216b6e6effd875cd0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3f727df52b4841d8b90ff625219d832569463bd320f49aaf94a9c2d706fa097a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9e60e00881a5e5168eace2acffa41c373b3ef02406688b03c69e4dd0656c7e66_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:b578298ff88e7cab48de60927a8e99f52d49791f271f08d1e5e8910520525287_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fc0dafbafec45d46183b03f4a7a455fd1db3fbdd8d5ade284fc34c974647a55a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:28ea872308ac7fd286f001ae55753e03dde674cc8c58df264a3a5c6a4833363d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:74f6e12dd81ed0c63a8983845a8a3295213a6e153de12fea13724f6ec8ff40b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b6095b8baa4b32f6915ef6ffaebcaab125acfc2bc23006d23b8be04be7442154_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:d1a64b53aa700a69821c2b3ecea10d946f731831b203e4bc65b7dd7729452195_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:91b2e671c9ad506297fc8d286edd908ff2277289d108a4f32c3b0202bdad7b57_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cfc8e8522d3a427627afd3a583e729d822789a3f2fd68998a9fc41292df76bf5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:d64450c15c629be398fc0afb54009c60c151b179ce11b43906c86cb41f5a8e07_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f10fa7d1184ad4027ebb2ca7ddf6ea2cf6da59dfadb6c38648d056d4590c9229_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:422bda8ecd8223d19a789e4816891f390083a42ff728510da58780f348ec9bae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:82cba79925fc340a97d23710901b1b7614256b4dbabbac0593349329f24f3398_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:0ce3b22f42ec19f8c3a7556f86cf1d8e22db77ba5ba76a29e092e8ba7c8c7dde_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:82565bcb5b80c75af9ed9f0e983c8398da358cfc6205bd0f3775b04cd69c5a1b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5031301ee1ed68874731dd460ab27fbc03ff766fb23de5020d2d573ce075052b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:83875dec4ba5db73fe9c2ce1ce22c955b42d016c15f9d8c731cadc17751d5aa0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:13b4dbf6a7b7277b63decf38cf089f68d966cd9d4cdd32022b73fbee1ce06b2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:67cf8b8c4b55631845879ef8cc579c2e7d96a5cd4af9672c83909e31cd3c29ec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:ed626dc3d32cef2787174b38a232bb53dc07cf19136a7ae0beee692049b5d27b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:0362f5ec213dede171befb2aaa43343740099fc8da8d3c0d1c96fccc6af03ead_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c690ed0c141b642514226223820c5465bc26a226a25ad52566859315dc17e529_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:af375fdef09131e75563f66f852da9795fd5b77ef66b36c05fa7dd1353c3b34e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:fbc8e638b6ea4580597d1104ae38ffc81dbf333e38afb12801bbe4a99e849a12_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:54d79dd5b8b64c363a3b7e7263b7e00e377a0117e475bc2bbc48ec9f00f94b6b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:6930615bcb510326426acf6954de5b732652064186ac0ed19ef7c683ce9cdea3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8353b502a270943d3bdf742facdb7931589b1da1263e4fd098d64f7b4066e32f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e9cc7aa24b1901a0c41fc88621b231927a9d6e23c7f008bc1666cfefbc49df5f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:2b74b78ec656cb9c991ff872d5c48ee63e08837e019bb65838b58b76325a69f9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:9acd8db14233af5629af6a3cce85c77fafa9edf89415b24f8a8a0cd196825645_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d3c6e9215628be3626b80edff5d736da1994ce1c3fa96d59109e3905c8f1ae45_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:e96b81626cf79c94fe32b32413ac35e80b7d2e402a11b7cf18eab33b494674e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:25d2502817725066c052e6079e7a3b97b0c9d106f3204bd11e9acc44e23119bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:3a00c1175b615d99fd2bf862422a89ae4589728b88339662bf038fe263d675d2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c2029ac1677579e17850e40a0a8cfad726e04da464b85e6198d20a4baa9ebe38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:d6b3bebece9fd9fe203615d5b87a840c9e89b64f3c7e7f3238fb43c52dd003d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5ae18397305efad4a2eed774cb40ef4f58af60c0aa4e61441030e663bc34f159_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:9b72fa3e6f7e0196c272efd6fad1636ef1c8fac41c4aaebe29a2f2f0ac204016_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:380b09da683ab9d92e2a7fed1330c5f53f5442d821b0c2539bc486e508a71936_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:eea07bb25349a5ed26392ebf22631a85ecf7dc6a1a30afafd82a52d421a4f91d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:2229a186943283f30177609b442f15ff44c8ddec2362e5241ad5639ecb0572bb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:3c7a5f31b3f53a411cc408e0b47aaa53ee1a94c70d11694d96a2bb1854ea3456_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:36ecb641ccb0e3a8561fb9953399d0362e780bb6139d0fbf2467dd07eda4145e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:d262d5f31a5c25d0ad001f403249198ff5ea015258a3d5fb68407f25996e2cf1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1391c08df70a95ec9503a304a4e8b28c72bf9c8ddd21d8f9fadbb85e225587e9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:1aac37ee093de1e6a0e86740c3df8c355fd5cf48bff2e01e58530b145e165221_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:600111a588134bf7ea5f6382d6c2ddaae073e755fb949d25fffa2f97f5ba33cb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:ede4d100369f2bd01f79b4cd86c50965d091fd6f582b48369bcc3e74110473d7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1ce81fe3c0b36fa3a950406b93c5f1a924fab92f726da76c034c332c92f1c407_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:522b3603a3ab87dbc1f9fa4f9b25acf2e22f7a751eacb823feb18279b0024e64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:94c56243f3a0e50d1d42e0002cb84797b9dc9d23efb6a12ab33b19f1598940ab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d60f1c7d0b30daaa9e9e8ab041c63445e7bb7b6132f50cd7f2044e538436c64c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:6e358be14bac6139b40ff8611c6e3394bed8517acd5d4842784dc1bb404f52f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:b32b90e8782b3a2aeda85df6970cba882f656203be6d16106a32edde563a83f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dbb674226e46dc1b62076e4b1e62fd51a82d01ad2c66c8477e7c01df44883d35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:dfef9a7b3d43a60b5d6a1ef8045ecebe3131babb425a13682d5b85686433ae3d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5ff979d48e835cf602e6172479b8de0623422c888c6a527302b2e8554803d2a4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:760e4cb453e352e233a68aeb0f1a7f814dcf593aa4b17523123c608838a3d604_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:b923a9c8b7a77675531e568bcf9617ef6d4e709ab7eb7fe1ddeeb172b527b116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e73bfa631996719e021e45e631841247eb24f980fd63290febbb80698b8ea01b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:71c003246622f555de9f8e4ca590081ad8b4447007b1f0518538cecbcefe5ace_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8c3b65caf0926ccc50f475163ca87f38ec81113d097d4a9d14da686200fd0150_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c42aa746f6c61e3ebb5a4bde91a735ae328f14e61ea04491155b16fdb9aa69de_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c9141a24d2b0784aec9fa49704855f7b4088332ad525ca5f37e9f7a651431a0a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:2af58b624976b9f8f829de67cd76a1f407aa556488885f8704d7f85a6467d8e1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ab1fcba91468a694671f15db52706095f2cf5a8fcd055feaedc6b406bb509e02_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:d654f8552f8ff123794b2bac1423e9d172547c6759d28b02eebd9922611f909e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:e3e2585f7a5216120972806732d252667c2707dfec2bba17b7d66a846218b119_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:3a07c9e91eab3a79552db6835a247558371446dd9c71e52316e1d8a543ab1e18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:605c1654cc19e714bf1b8d8b983cf6cef9ef4ffcd4a5a829d1a0b2ec74923cfc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:de6cc7256aba2ad13423eb60a2fe69335c316a1a35bc3ad3d583dca98168b2a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9e323ee37e43e7d6b07b1f250437422cdc321f204a4e891b3998b8a5a52188b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7795e52031dc780da6b331773f3a5ff89cd64027816afac3edbf0db9aebac896_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:fa3c364d89aaf09867adb992c7b643a9c9e6fab34bb037456404a285e9221da2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:b9ac95190e40bd81fca9fa2848a675b524edef0f3d73f469c644641e52cd1f58_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:df14ef8a3939f2e02a8052ac17ce00b844f0391563305a26a5734e7c215d40bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:7c6370e5e97471e0749a7d0bb9555e8eaff2417c2601ab8d2996d4680d714175_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9ecb3b970521964eeed97e09395b6a1f23d4fb6fdbbded445579b2d3bd4061fe_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d3ebdae06c35615bd2d80a401a3cce9d162f99b37336baf5019cb280de5157a6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0977ad9a02d00c98e0197f06e5fd34cba79e6195ff6608bc593149212f2cfb3e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:0e03292077a1e98cd0af13c4954f28b33c14f40dcbc786e76ee2166f87f5e5b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:da002c44b64d7fd7080bb830048e14b748df1086b0eeb9307c89126073dc5331_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e758035655da16fe2cae372bfdc6a4d4c911aa8b55eac8c3da83f5769d385c2c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8d52f333d0e066802787d1d9f56a6c3b7bc5946864c1b4a2c249a660ba12c74c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:a0325eddd2ec6e5cbaf79575c44dc3541da4e61e33dceead6e93d599580ffb03_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:c25424f3e6fd22ac84f6fa3689b6e8055fe3d7fe64046f7772994a277141091a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:f75102f7c45b6d0b6ef939c94d61901385bcf5185fb085746ecb207fa79b4af5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:3a9eab5f451930acf14cad5c99973f88e4f4850b426e24086ac6f1e6ba03ee57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6286c0a731f028d5b4b14aedf5e1f116eec94026c177d1a5215b96474074d404_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:c96ac4a3ec4cd666a361fbe3f76fb92a601d38c566bc1303859dd20426d03825_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e2600706438da5d16471f1cd19aba4712c261bc29b5fec9dd7ba9be778add0bb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:5d0eca7c6e735b2cb0367543088ea9f4c12465e5adfdc6e741197de25c7f4317_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:70490327ca3ed82f44d333846019b65a72d6fa276ec3973721e2e0fc2e4a3471_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:a2b5fbebc3a5d756d09346cab7c2390a34f4a3595fa2acc93650233673e6d8b9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:dad1809a993d86467d1b8a4a4bbb010e9dd50848d3d6ed1d563b74e8bac306b9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4664850633066fee2671b763432ab21259df33d1ab9a883674d1ac1ea243a783_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b3754efefd2074fb65f42ecb37681ccb380e8b46e7c900884b9993cfb36c873a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:d4dff0998e4a9c45c4f32d82913d1b312059d3ce7b8388a804e7b6eeeda1986f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:de0d4563044c6a4bfc4377fca5c855099c80e3041dded830c6d95cd37f0bada0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:54a6ef85c2d79ef9b2e7114200d8f7d58033a115105be47d6395c3e418a59a0d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7ac539d8a4f82d5f7ec8d993f69b25657a7aca5ad2b866c55379e95bc4bbd58b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e3ba22bf4740e61d59bd3abf74534d64cee3f2130dc86167b466b4f83e06ea89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:f06e0348cf323b7bb502f53d3451aec038b741243c6b0ccaded2158be1170872_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:31fa4df80aba35ec3c17dfe9ec6939d556219701e0545ae6decc89cd6ba79087_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:dc747224fba8c54840448fc3bed0dfa7da305edb68f8ff31f32ddd65cbd9e12d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:ef2dec293756ee1848196847cd567610ff13d84af98aa357438e411f8f04d0f4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f399014446508b1e62f940960422ec4c3a1945ee44c5de033bad71c69e7e2a80_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:0454606b21577eb4127f7eff4c7334041f69852688c9db7660e634c2d450c754_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:552681163c7b016ba7cca547d3b32d50e27f9fcbeef793ca52e9e64137d57fad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:8217f4993b4f563cad1ae65f14973e5c48b7cd3b2e1f15f1edb86af23590669d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:88c776d559c461d187cc0ab24c53849629ed75b93670cfc90657f429563c7747_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:a32d5f819ce5430d5ae60a1e5544c8ce3673bcbcc55674a416c80868784b255b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cfcae1f52c6bada121cbbd1c32c9700234e450aa6ca1c5e36cc756f983deed88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:d41100db39e0c48ae96ba18846464e29f0a1d708c0286161a854a8babcee4969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:f3a2a6ff9ea3270109be761e247e7f5c766c86fcb194429b01339cf8a10482df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:1367691472cb18ec477e9b603d90c0f296539f9f56d1355b33e88e3870f48b38_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52481b7110d707bce4c8cac15a13c69ec49571a3c6e380baa0eefcd84e4756e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b75cbf9b9681450890755eacbccd47a50cf05084774f186f5ec9511fb768aef2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:be21ab62f23d567d9eb38613321fd1b39b1570c2679f2bf6dcfb6731a02ec7f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:08bff4152f4dab00bb26cbb7fbe01c2c86cbf4fbcc9a3f9e6e7227fa77009175_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:5a3766c49a6f04ce3b5fb57b8d4937a1af276b02e2bfa7859ca14b440cc97980_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:7ed8b4195d1c0b5001fb2adf8b25c255e77e0280881f6854f971b0b9d88a2542_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:c6ac5b6eb2c87291f21240c30bc76cc30e924cff6ff6c091df38e25051f7c014_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:1d5005be192459382a394b0b062907226fcc3766109873b5e86b8213f0e4c992_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2c4eca9e6e1d1736956c4c27fa1f873e436c69cbb0a734fb154cc0ea64a71b87_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:5cae0781bf6ba704a014022dd0453a29b3ea190862a3c2fe98268e3ea12d18f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:81dfef68491c3f05631779dc90d2dc3f02d6d6da0d645e65fa8df19c3cd86116_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:01ea7558b01db5a4e188bb15ba8d11842e0070f627bab87b67adafadbebcff6a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:29f22cabe40b913fcb175f7c4bdc4553cbb91ee14786acaa0ddfb6f87aa3aa7e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:47c4f9a6f583d6e324379fbc075dbf8888509c2d9588644e6c452837d805d071_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c636e1b9dc7345f148113f901972d3bd3cbb6149ca01ff5333667fa1914a7067_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:4e752b9c1c07b3c544e0f8d051fab8a7aaedbab95505865d491afa69fdf4a469_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:ae94eee7b7817c819532109a8898e5a34ce4b52bec80d1a7527c61fad88cbec9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:b7f29c0dfb5fe352fd467281f0d59557b25059c7dda5ea26b21f226a3b5d47c4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:d67978582b629789eee711434bfa275408bb393fc47a65536879f2dc5c9bb6a3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0cd4d7a036011a14099f95ed4300a8283bb57619d3418df088aa3a50578edca3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:49cb012134afafdebf61c90b88577c506acfd9587f3d029c56c81bea822ad092_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5e17dc26d79a7e31ceeafd02d2c54b0851d644c0e13a1a588c4974a20b1528f6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:84b8d2487f35496afe73125df7e2e0e244dcebc21b797e5915c3ca460b0164d4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:6279c7d5365730a9d8dcb7dd229ef373d17d075246d39688d40bd25a3ac5d043_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:429aedc3a35c3243db7f678e63402922be8103239cf00ccebc43f57d86b103ca_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:1be63c1269f8a258033c21319dc52a0b7cfc8ea7102701ccfaec733e7b910f28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9916ba13a061d49f7d2bb9798af54761714136d700bcde1b93254d7bf5fea43f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aaff58857cda41533c4dd1bbdf97a7f26958af4b0265c78ae5fe12cc406a5432_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:f383dd4155ed57263e2f15f1d985d90a8de9c39eb1b337b81522e42716dda6c3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:0b214d1a9e3e8fd6557a4d04fa3216644ae7fbe975214ad1b95cbc7067d25161_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:16784c2abae0b4b7e8c2b6cace88ec36a8275d7a19a9b12f53760d75ce2e5c57_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:3a74c2cf3e046ec57ebed042c8ad221fb248857d437f87dd85b9c1a01baf1b4b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7d0b0708dcd3141c39af363fa99f62c1f223b22e2c6ea41ed83bba8dc0eadbac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:4cde7311de818660254df01cef2a125db9e7375857cd3b62bc23062d54c67c32_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:5934d8ace644ed5b06aa1517da1b289561f009bee268b33037b78ff73de3780c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:9b6dda89ae954d891d2eaee580ce6f51201f5a46be9b39a9451878d37e257252_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eca61a182d0aba2f33b8f00fe022dfc4a00ecb2c4e5871c8e3f4047ebab2dc04_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:8037e87c1920aa7d2b102bed37458ebcf6eb09737462fbcb2ce9a41084b3f018_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:82bc2b7b816feb327ad7ec25242423d7e29602397269e282e8f2061fdfc4d64e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:9ac8720658edc3a705c28da0a04e3151fe9176392cb21a8b62958c6b381026a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c5a9f18b32b185e292bdf42794556e6eafe2e52fae9c704a6937450d02126ad9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2b264d8951213e3018462a72292a6b30d583c8f06daf5ee241f94e16d506703c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:51114051305318867420adefd426b50dc61da07b3b8a57a7742b6c5617160203_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:8eb99577e0664af39d52436f332d1e39e6b2c01109fc3dadffe1a08e3024b317_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:af57ecdc60cf066913e6ebf0dfef400f0a254b5f6dfd0aa31d83999265b468f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:7b119e3bafeb462483245c1ff17369a414ba505a8b79f0bd9d705570ed76560f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:b033381da0d7c334e3aaf46eab74fd4e0966c86f5ed2a15619e2e272fe583ded_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:bc4a300d46d76cb77e41b9b8bb114bfa4a74cc2adeae20a817f82bc51c7473f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:defee96610b0012da78daaf30570fad7c7523b2b27f7dcc92c43958888716720_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5911fcd0e272af7c840a47d04413b24139fd9c619434546b13298e5431e3ffc3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:62fa04c23de9717d83f539a2173c4cc782b26a92d77bfb1ca56fd70f0a598621_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:a58862a5df96016de66cc08fcb3cc26656178b6df316a209d04a6a8cc8dd3271_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:c7bb30e8a7114547a17b825de02a377c767bbc8abcfb3a107b5771f566911d9a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:2b91597e92724f8e19b366ef98adf4a737dd38a1af3558d6c096a6a2f62f358c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:4ef377dd4de22ef38524f823efb55ed5680324b20bbb6e8dc01635548c89c563_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:517435307941a212c321cc125a7a065bc01c3dcca1d48d1f406eda581654eb35_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:587bf89d7be7d54e962ba19e650799bb01a733899023eafdd312bda2d24aa25e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:07dd1f6e2866eb81c2d5401d96cc41aa53a07332fff1f9c5957c0acb7d795d89_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b257ce3ac403e4b7e53cf4a0708f12823f79c4a11e20ac24a988298a46a6ef6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:442cdd9fe2eb6473a3eb42a07175ef51d189e1a4189bc3c2078dbeba46d04428_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:59d149004ac912bac883e47a58040775730b9fe35a395b66f85f11ffadff5d2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:37e902dbc5732ce27e4499eb254cdbf134521950f8e28ba4c8bcc9cd1c22e66b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5de8525a5069ae5338d04c7ff67ab6ca455ff85be3653294ba0c833459af9bc7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:8a3a995d8193b4e2292d94d3d3868860e5d189f6ad7e3b53470258b837a9e012_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b7284872aed97dd35b7b233c8033e01b6b864c4073cc80b49c4b40d6c576bb8f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:40b315018e5a869a4cbd0ac9723cc224602e1996e47b8107f60beebe52d9c6a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7c35b7135bea1c52e42d9963da502b94a99491c6231badf8679f36c6ec31aa7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c3967d2858405abe1a54cfcf8f2445e45dc7aef7696c21cf96245c0bb4aa8834_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:f7b1e956fc4592be241ff00c9a5e159b6c54c886062e20ea2d2710637addd118_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:1afb07b8d4e82c4c6ae0c2aa2cbde892102c0862a41a5a1940bfa07a2aadb95f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:3af69cedb03c410faf9169e26013dea148e9d8b7e5e9e9047c89a06b1913ccb3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd16b21890ed9fb0831ec559bae9767b4cb55f73e96a1c0c493c4de2642b1fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ade221c9b8a46412f4f2ccd96c0d4a5a9ec26e29c1475aefb83c55b3b885794a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3493f9658503d0009fecd61332bede316e2877d2f322c18580acc2d4149e1390_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:3602ae83bd1fb64d4e48a111620905ae567ffd915a71fab0da841f3d92889e68_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:6dc4fb0a3b2ac5a3c1bf76e1a188c829e45adb16376edb8e147744721415c02d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:82aa9a4bca8f2cd04b66071849c6fa0d5532e51e637ce09a08d1cb2a3a454311_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:19fc8c9512fecba33b1c4531db3d85e8263288bbfbbbbc485539a296aee55471_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3eceb25631e82da4d0914ce3e4b8f803659b84f9fe880c6c0c99a0d7e7c1b3ca_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:b5269e0b5de55c353c7b624e4c0171b10f30696953d8091eef6ef7ba7f0e9b6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:bf38932b81124a15686fe3e93f1f30fe99444765e7840983656666558c51e070_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:236d45e01e15eebcaf277611baea29a066596f9f890adcfa6f9248142e375c38_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:763e538fbc9aedfc84a1ead6db6342fa4fd4aa2e2f5a7689ba167a4bfa907ae6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:96a1955f94b86f41d52305cf43753dfc9977722d3a1f0f4b1be6411c9dcda2c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fca2ce6e0a8cad74aa81f2f2807df63d35ca7e9d8b28b18e33c926beb90b0377_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:35523b68f904b23d744cd799e7fe04b24a03bcd507b6caa657a63d2bcd8b1b16_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b39be2cc9eca4757f08033ce40237af2ceeda16ae98a918434f08c004f3927f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:b45d311bc9bc8c7867bc6848e716b4594ca8f7b80f04724d0b652914e1b63a46_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cbaef1de5ca28f877a692fe4f050fe3917f35149416cae6433704085f68a4e9d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4fd9b39cbbe283c025a05b6343bcf2010b3ff4ee8ec7d585cd5146761d37f548_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:8f7ed88b7cd7eb51f41548b1cac3236ef1d6204e08440ae7a6e20b960fcfba98_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:bde243eee4e9047c42c3e27139b3d5634a1bb5ac0f4b83285e4f3e564e1de244_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ebc976489752658a1757d4b62c75abaa2607d0a67ef25dcaa93d4e826f91fc55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:26081303accc6cc7348c924540a4a240c42ad01af0d7875b92962beaf88d0ad6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:4b17e4141db4d6d51a2b16e42eb12aa240220d4dc9e360ff92ce8332d6314493_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:7a6546561ae012b5e2a3fd723f76bd57e4e7f4ed893c440b218bd684ec71e2cf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:d1c51b219971216291c873c6f2272e9aa1af3e91af606a7e72ee15d84914f12d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:48a53f673f4a71733d2ee26ea8ebfa9297f541e383feb5f465777e86fcf7bc6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:5afbec6b9fb931f7e71df2aef8c5f2a2aa1fae14c0779ab275bb9d7a6b5ea916_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a3e9aa93c4a2f1396f23300641358f2157e4fa68408f5ac50e06dc1d5ba28381_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:cbd85d81d9452e08efcfc7c9cd2d131045d8e33bfdf4c57687377b5f8d1da762_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:67f91ee99d0d496066c65fbcc9855fafbbc0bc8753c1ea29ec19dfb978d0131d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:8013891262e80780d9914e393a8d91861d1b14a94e2d4f89affd0e299a4f5e66_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:85892745b4e5f5113db96c7bcab15c11195ba53b5a059f57a08aa3830e83c975_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:8efc4f72dc248944dafa1d0c1113ef28df5be90052865f32196a1dde6d13e314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:21e210d64d9536dccb41d5179364995202933f95e0c8221af06a0f52360be4b8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:949ed5dc1631298aba66a726fc3cfb6473d7203f452663786cb398a14a5f6a88_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3cf0e16bc1208625607b76af54f3b80c5c7e103333a3f4b205d1c943c328266b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:4134edec41e73edcd77b04ed8a539925f3b81f75661ae2b33dad08b2a0d5f2f9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:3986449a0b211a89c76d583c15178a75ef95caa002fd3751ab7c01122740ebe6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4813d400a6f46477e92449d1e4908c7bb329545c578b09b519ddae10d0623d21_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c565a6990de02cc0f223060fd59bcf99ea9239a2286a4ac1212fb859f0bbc078_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d26f27237c1317f5ac5edd5895263e7809039fdd77f608395b4d11299f79b857_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3f8a514769d3995332c660a668ffae9018f88ebbbb94db89109fe62a78bb6a7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:757fd89b154f09f1115ea21b19eae895831f12afaf77491815fcf229220710ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:cca40d616806de4c1cab0a9d0e54a614d0a4bdba7b0dc49b3191d0ca6218a4f3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f2e12682e00bc8c041d04d4c414664eb27f6e78fd42f2c9b8caca079fb72a3c6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b924a823e9f8399b040ea016bd74e7a6ce04256c662a9226676b9ad06bd18c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:747f9b6cb8aaf600bed84b80102ec5fb6e614c549c5edb07f97e4678daf60594_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ed6318e5a1e2df043166879a526549ecad1cd62159a5659ea2fe201f4abd798_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:9574167a857bf207def2891974ea31a999dd5b163c0ebc9a268d261178803b73_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:45e3755a7d823d3c47cf092809aa13808b05dadeb49c2d8965ef7dcd1ecd51a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:888a7dfa28959baf2c21b20048cf69821e78230c33ed18c430940649093f60c9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:d36a332435642bb7099a06c8fb3c27e614a19094ad6a727493cb1524dc64c5a3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:dcaef959fe0a2f2b80577b0d2d2802fb922a48ceeb8f1b552e11ef0dadfc8efd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4aba6f6d0717910e13157b5aef43633ee8359fdc730df2af1db0796113e327a6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:66fec0af1793ffe236208f8922add7344361185eb6819cb2d655c6941de28d0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:854d5562f0da86e02483b9b860c117fa0553058ff06204b4029b1078ed68c2cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:ef3e2714cdaf4dabc304a73d3867f6a30ed990079a7dc82935cd311b6298429e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5a47fabca2c5da103f2d450f766b523c11f2d8144dc88116dd28ab64311638ac_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:8348dba52b0b908d04f35dbfbb45272953f59daa95da494498c89b1f13a01518_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9c4c2c65f712de6e55348896b2609f71db681e98f70dd26380c17103c168f2e5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c9fb883a4258dca7dc277774721df45548564f1bf02db259d10eb28030312b5d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:2bc60512167cd61ad02a367888bffaf9ae9ff5d38d2710f8b084ecd5fd5865ff_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3e189e287c6fb6d208f0c06f87f80d78dd7f0f224f1690c57212c0431ce42039_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5449039f33a2f0c68bd22b9ffb0f36629d2bd5650334c648ec6332482fc73adb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:ea27513cabdb48624bccf772ec7657f21f625d034ae16afd2ed87785c1e92c6d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:25311111c8f185636cc6c4c57fcb593a4d7f80947112d026f17b03e1cb8c5836_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:279a1f40f5daf3dfcbb6ae72d7b34e1cdea81c93b8f26934b0b75a5691768488_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:73dc60e6fcd70afd3dbbae8a5a3b0173b8aae24c262a538985f446f384305b47_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f83b91fd2651513053855b761ecb7123b9c8bfb283b1b05ab987563b24296ac7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:3c25156b45ab456d86337e7943e2499d56ec59e9df06a9eaf6573d00c8ba99aa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:5eedefd980085c0d05eb99404d84da557aa1e33aa60b6f8dd617e6c51b7a0773_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:6408fc9ef2d5571e6b6139e460df943926f8f61d3f02ac8e29b4ebe2ac1f987a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:9f22b0754b61e971e65dadcf6b1180062d05f0512761ded6d3c72740ad4685b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:93757da9f7fbf6c826f1310e9a753daa86cca4a7d0a307a7605db692d679e0c5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:a3b6915a30075af8ae31cf1f9537b4ff2edd806ac3b9c2aad2c3d0122db24384_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d6e27f0f7452d0ec0445608ee11904987ed62e79ae5b501c8c548b3140a72916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:db47533315f708b613985393aebd19f0f1be0553a8a84f1ca4691a6f80fe99d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a5cb51b7919e67820591dc9be361dac3ce494f2ffec55dcfb4c62cf075ba9928_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:ae934e2c4e03c385a8f14224992a885b0906953eab145f46f920895c1c563dce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:b0dbb59715d1fa2ad7d31b84fecd58695e3e79d1cd975c9d1ddff84f79aed5a0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:d387c467c14234a2edeef2ee4e1d3390b6d7f69e1e7e3ab4fb5950c0665e7e93_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:12069b4c9b06e21bceed36e3a6ac286441ef97700a121b6fce5164f3f9af5fb2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:8b999d1ce029714eb21675fd185e98bbc285de3dcbd34d8d78d44081101c5eab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:cb654eb3074962421e67ae133718289b8dfcacc6969400a2cc33a253a97f1581_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e4457eae686f5e2cc90f75a4fa7cf56157a53937d5cb0b33e6bda1ecb136ef23_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:57a99507c82d77541a982dcb0be5f0cdfac612ed37649d8f870098110ebf67e3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:8f3a5550a636594f6f13f757f7cf9c13814121da51aa8e91a852643d9a4e188d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:3abe794167d9e85bc1b991a218f8cc431d7f26967da3a6950e59d70e46b127f5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:4df3447b97b0bb2a30d5cd80a44b18d49814281a18069892a67d9dcf1f960ac5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:bd2f3a5e7d019e00cb522644c3e1a2895b9d77e7c4510194cb954f74f6bf695e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:af0c64434c0ced75ece447da614e94dcb92d11f7fbb5dfa15a4ab17fd05d87b5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:24b4aae7d576407c88c4d2d6d200ec98aa762e1a032ad7a0ebcabdf63f5767fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ad96a37c03c7af6fefc4a4e34b67f993267856ffecb586b5099abfaffff8e59f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:de86930b332a89f7d532adaca7b1f3bdf99db5f0d16c8c3cad0ed3d287442b78_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:e0ed81285f6e9686d820425eb54ccacd156abb8adac762b4ebcaa41388a111a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:233bd8980b833b554fb9c8ecd6e9fb6d603014fc61292b8a95d471a9fe6a4d10_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:56a429e6debca0139cb61b640a8cafbe02094b3a318af835549003fc7ab1aedc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:6368603a00885b9bb3992ac55992580311eca99688f9f5ba729837d670235256_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:9abaa144a449593156337eb1d254d7bfb668b118f70497f742bb1c72b5890af1_s390x"
]
}
],
"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:26412
Vulnerability from csaf_redhat - Published: 2026-06-16 16:41 - Updated: 2026-06-29 17: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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Data Foundation 4.20.14 security, enhancement \u0026 bug fix update",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Data Foundation 4.20.14 security, enhancement \u0026 bug fix update\n\nFIXED BUGS:\n==========\nDFBUGS-7104: [Backport to 4.20.z] CLONE - ODF Console is breaking\nDFBUGS-7079: NooBaa upgrade failure due to remove_mongo_pool.js error\nDFBUGS-7066: RHODF 4.20.14 release\nDFBUGS-7045: [5.20] Update nodejs from v22.11.0 to v24.13.0\nDFBUGS-7016: [Critical] Upgrade ceph version to RHCEPH-8.1z6 at ODF-4.20.13\nDFBUGS-6953: Upgrade the package on-headers and undici to fix cve CVE-2025-7339, CVE-2026-22036\nDFBUGS-6872: [Backport to 4.20] INVALID_SCHEMA_REPLY SERVER after upgrading ODF to 4.21\nDFBUGS-6846: Backport to odf-4.20.z intermittent S3 upload failures (HTTP 500 / InternalError) when uploading files to NooBaa buckets via JFrog Artifactory\nDFBUGS-6740: Backport to odf-4.20.z ODF 4.16.21- noobaa-endpoint crashes with Exit Code 1 due to unhandled AbortError from @azure/storage-blob\nDFBUGS-6705: Backport to odf-4.20.z [GSS] Unnecessary OSD redeployments on 4.19.z upgrade for already-encrypted OSDs \nDFBUGS-6673: [Backport to odf-4.20] - Random Pod delete makes the container in openshift-storage.rbd.csi.ceph.com-nodeplugin-csi-addons restart\nDFBUGS-6541: [ODF 4.20.z CLONE] - Provider Server sends sub channel to client only when provider side csv is at the tip of the sub channel in the catalogsource\nDFBUGS-6533: [Backport to 4.20.z][GSS] Missing default tolerations\nDFBUGS-6531: [ODF 4.20.z] CLONE - Missing toleration for node.ocs.openshift.io/storage in rook-ceph-rbd-mirror pod\nDFBUGS-6487: [Backport to odf-4.20.z] rook-ceph-exporter log causes huge ODF must-gather\nDFBUGS-6460: Backport to odf-4.20.z [RDR] Partial s3StoreProfile missing in ramen-hub-operator-config after upgrading hub from ODF 4.17 to 4.18\nDFBUGS-6176: Backport to odf-4.20.z Noobaa POD keeps Failing when Clusterwide encryption is enabled with IBM KeyProtect on ROKS Cluster\nDFBUGS-5746: [Backport to odf-4.20.z] Ceph PVC\u0027s not provisioning or mounting after ODF v4.20 upgrade",
"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:26412",
"url": "https://access.redhat.com/errata/RHSA-2026:26412"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26412.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Data Foundation 4.20.14 security, enhancement \u0026 bug fix update",
"tracking": {
"current_release_date": "2026-06-29T17:50:55+00:00",
"generator": {
"date": "2026-06-29T17:50:55+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26412",
"initial_release_date": "2026-06-16T16:41:50+00:00",
"revision_history": [
{
"date": "2026-06-16T16:41:50+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T16:42:03+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:55+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Openshift Data Foundation 4.2",
"product": {
"name": "Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_data_foundation:4.20::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Openshift Data Foundation"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781549637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-operator-bundle@sha256%3A8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-operator-bundle\u0026tag=1781554190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"product_id": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-operator-bundle@sha256%3Aabb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-operator-bundle\u0026tag=1781554564"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781550895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-operator-bundle@sha256%3Afac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle\u0026tag=1781554450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Ab4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Aa9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"product_id": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-operator-bundle@sha256%3Aa53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-operator-bundle\u0026tag=1781555004"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Ad875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256%3A265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle\u0026tag=1781554271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"product_id": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-dependencies-operator-bundle@sha256%3A48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-dependencies-operator-bundle\u0026tag=1781554178"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3Aa168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator\u0026tag=1781550614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-operator-bundle@sha256%3A16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle\u0026tag=1781554211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3Ad24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9\u0026tag=1781550704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781550839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-operator-bundle@sha256%3A13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle\u0026tag=1781555998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Afeb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"product_id": "registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-operator-bundle@sha256%3A04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-operator-bundle\u0026tag=1781554498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"product_id": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-prometheus-operator-bundle@sha256%3Ad43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-prometheus-operator-bundle\u0026tag=1781554377"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"product_id": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-cluster-operator-bundle@sha256%3Ac649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle\u0026tag=1781554999"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"product_id": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-hub-operator-bundle@sha256%3Ae7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle\u0026tag=1781554287"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"product_id": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-recipe-operator-bundle@sha256%3A97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-recipe-operator-bundle\u0026tag=1781554290"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-operator-bundle@sha256%3A48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-operator-bundle\u0026tag=1781554928"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781549637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Ab5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Ab08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781550895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3Aad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Af9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3A691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator\u0026tag=1781550614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3Aad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9\u0026tag=1781550704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Ac4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781550839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Ad81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Ae20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551372"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781549637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Ad4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781550895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Ae37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Ad940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Adf0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Ac8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Abe51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3A7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator\u0026tag=1781550614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3Af75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9\u0026tag=1781550704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Adc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781550839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Adc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Afd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Af902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0?arch=s390x\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551372"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Acf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34?arch=arm64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6?arch=arm64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781549637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f?arch=arm64\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Abe57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572?arch=arm64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Abde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781550895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Ac7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Af255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550610"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-rhel9-operator@sha256%3Ac46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator\u0026tag=1781550614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"product_id": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-external-snapshotter-sidecar-rhel9@sha256%3A281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9\u0026tag=1781550704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781550839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551026"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc?arch=arm64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551372"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64 as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x as a component of Red Hat Openshift Data Foundation 4.2",
"product_id": "Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.2"
}
]
},
"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 Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_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-16T16:41:50+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.20/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26412"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:8c4b08caf930cd7a8cf21d8e2ec0d063a2f1cbfcdd961b696923813fb5c2a9eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:1b7055b6a566413234c28bd08ef5b671ce661fc4ae2bc47d6c0522c803753ee6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:80792768165459f858c9ac9cd85f3e350ffa2afeb042c304dfbca6040c885210_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:8a1248b56b89a1f35cd0a00e9b4c435788585d5f54c40f1adfebaa493b83e251_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:91030bf768fc1485471a09fdd09e8c9c1fe4c2553b05845b15a7831b5d8de1f9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:669118be8ae864e48be5304aae036c4ce924bfe3afef5e856d1b9a5c5ad7169c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:7d37197086204c60611362342f7c41b14a5b2c9521f2e09e2ecbe75c8b260450_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:80db619879d5313a8a7c1e07fb12f3b2455c6a2d67bd03c0b306d60b7a1cacff_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/cephcsi-rhel9@sha256:cf0533469ec44a71ea718d1fc78146db027b1b6660a60b5d2d01191e004bba34_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:754c4ad452d7c1e8251f2ae88de0314f97ce27ab34435efb21897036dd3156ad_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:9c8c2ce98e61432ce9ad3bee19d853779ff444a313e36bb98d926c2e9f53da9f_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b5b2c06d13898496ee92bc89aaae0a290e2fc31b7704d578aea74940c27a05f7_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d4ae4a86a07242dbbfdeffb9a94a4430a749674c8f57df8118e26c1a9b7c8cd6_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-operator-bundle@sha256:abb104d0237852681cfb62b04414c09ba0b341cdeb82fd18baf583ccd8a81339_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:12d37eb38c88b5a3e29465ab9898bf85e6e9d8359f60c7eb2c2290478f336bf1_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:440fe733f3746e813d0a5aa99866defbb5c7c2ca18334298a34e65b5af7f9f64_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:7f0943cae5489ee2d939ea4d514e1c4989823eef31e050742cb46da5d21cd519_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:be57cdb735f43afc1951b46d81601d6ba417f9bd23cec4101eb2cdd6d7c1c572_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:2f512b2c2931d19194afd78b695f1eea249937a9e87c8a7b09b7e21c2586e4eb_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:496e3c065b2ff0c4279e88fc15fb50a376976f541c5db3e499e406b2d6671be8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b08bed76fafd960921a66aaed549fe3625359da0fc4567c57d3511b94c6cf415_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:bde1a31ce3005416750a67168f3a706bc9a8a28d7d4779a155350e00e3d4cf0b_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:fac7de90f074454918a332814e2363fe1039d1384ae72c5d8d7f49489222bc6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:0b04b1261c6c19db989e44602c89d59143825da6d0bf8e3726ef8c50ad78620c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2b66265561615956d15e9761bf9923aa2a30b420db40b10b281e5f24ed4b8026_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:6dee986456c548977b074dbb4f2e0e04cbad3a56591108b2acb2e2c3f839c395_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:e37027671b9dc477aea3ed8431cfca4867c416f562268b1ff735e9aa2d39651a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3f0915a1139be1455faa9061436a94aaf5accc71a06d4cb188cd3eff0330f0ad_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:b4c8f052e208ab2da1a69a54328ab4060fdaf77727bb0ede9fdfe39da94dc7af_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:c7c69f5d8494f92639b29bb602c9791acc674cc5583e07085854846bf5e269dc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d940e695962a1bb404ad1c3ce7bc2104b9b43cdde5ef1b5deaf4a2ff77a2b61d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-operator-bundle@sha256:a53c55e2af8d5e267d1d93112d8bc6132184c560fd9ee90ea848fa5cb8166c2b_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:84ccac49bf02a9a8dcb07fc1b5f1344d40bc84e68d805f42111b4557de5a436c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:a9a3d21c7db61624aca72075a36db295c0fbae5f2472d70f988a4e275ff40d32_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:df0ed2bb72602153692b63602d9f1d1199079e44fbd34855cf023412c7879f1a_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f255a50ff3db342dca60e7d95e414f87f40078750451666d6902d1de018b0443_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:09b33beace3fb1920291559ffdcc38d4c656d93d2e25689dcd52018e70a92782_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:7c0e98b0bf6f84758f8309580fef82d843b515f137527c271649206af1241635_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:87c3ceb960232de9f938990b01a15efe49c37fd6a6d542eece66d97539fb5199_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c8e9676482d3bb570dcaebd9e0bbce4a86f2367ffe4cdc3ab4f388225b4fcdf7_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:22bbff2ba1c4ecdb8a5ced52577f5a1e80b7e7ffddc62edebf2d95ceea0ef0c3_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:59d10b8e2bb6b815a8a321b7fe999254dc6b9dc36de66e9366a2a9524445c8bf_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:828220a1b6b91363960464d8d8574e9aa398bf5d72ef8935a8d0dedc94131dc0_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:ad21d56a2c70fa1666e3838dce82fb43da58f39f37f1eb72459788c84e4a67c0_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:122b4b5e1f8fe00c2f92c1024bd3d7c0a8401c5c992a063e42c8df6a53b7245c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:27f0a8ee923e3855a325dc370d02dad90756f72d32e0ac5c4ff4e0c2d2341c3c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:8cbe0b58cf811388acbb35aaf448c06720d0804e6e6df362909912dd898dc2f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-console-rhel9@sha256:d875712dd767fe050d4704c4685ce108a1ec6e8edd1354b81fc6e1055289e761_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:03ede7548c90ee8a41a61bba5334785e111bf810800ffc17c4329cfaeaf5d54d_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:0fa175dbea99db5c4db468f8503cc1c9eaaf7fd8c4c2eee32fea6b75c09175d5_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:74c91efdcf066593447e7eddc4c6349f34f8a67904df3da8644b28cfbc6f2a54_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7b07224ba572f9957a5cad87e8307a5a91ef448aeb03175a5fda4dc8ccd0328c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:265dbbd48b3a02a999f9e0610c139124988f024fefdc772db404599f05ea9e93_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:09476e5d6eed4dae48b2de853202e1fdcc275d8ecd717078ad270e990fcce946_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:42669fdff164a2f96aa595e6522a147ed5a1b6d758d50ad24010684c61fdf765_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:5bb53b497ad8ad8c54f58cee42b183d8f9a522e971ef8ff6c4e1db1f733965de_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:607557b8131f7209054f09043f79d2a72963e001cc0b8db8dc983acc9dacea67_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1d865730ebac2b0b6d38b6d687af07ceac4ea302745158f5383542f593d22b19_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2162196780dda6920fe00807ae1724a3701888e1e1b63a1f8eaf0a658ba888fc_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be51d9d9f3727cec5f7b24fd96b934ad8f4f1a34aa2e174ea1d2a2eb02ad4b5c_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:f9bd338868d40edf1659d9dd7ebac73cb461dae5eeee06ce7514939708ec651c_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:48d89e933a734cdcea9e598e27a1f576fac616d3f8fe9b1a833d08c542720c53_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-operator-bundle@sha256:16ec160994e8735ec389462eaf4ba7df135987e39281ed96ca10465089ebe552_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:691c0cc457fad375c64fbe9c7e72fc24c4f22bac09bab505851b98c197da987a_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:7c7af930a166b676db51d99029c1bbc81a26996e62a03ebde736c0419ff82646_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:a168e17e5f46d1f648f041b184493cc871928886cb4ea1f4e390a0a06e48f238_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-rhel9-operator@sha256:c46ae7b773a4746841b23426cc3b67a4f8b3628007e067ac38fa7c15d16ff3f2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:281815260e05aef3e334bd5161835e0d10c9ead5acd586aae8facd1cd32e966c_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:ad6e65c19043d1578cf9bbc7d44c235aed615e83b6d772f7c2ccc3e0b8d2d7a4_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:d24a444758e35a76d0c1e9f5af5ee1b89b4549e526650bd951afcf743fa7011d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-external-snapshotter-sidecar-rhel9@sha256:f75128104d63cd974208aa0bdc171868a2187e1b87d31338558cc6ce7879893f_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:78141247aad99867911215560d1a3bf0658f620413904bc4823cd93e3d48c1d9_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:9cea0eff2bdb30c9c0fae5db399ad2b99b5aad97745de0c87d94c530bc08284a_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c4714120af54459fad43921deebcddce78b7ee67d566900ae3bab69a661f0489_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:dc0cc35680c9d67746882ba5f8b5331e523e82084a8ac715acf6d082908c5b43_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:13dd438626ad1b6dcb8fc7776254e941e4d46cabc32ee31723c6d4f4a5d3a375_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:00cee19af3ca1822ad4f7c3d1c1f1d607a21b3b38e00668bb419b84248381f46_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:0309e89cbb42e1b51d79b9697e751e0bec98c8934b1f70450114f1f2917bdc0d_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:62c99b99d02d1cb3020acd816c2c76cfe3f148e3826ee68f4d5d30c04d7a9db6_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:6f0b23e564122247e7c290ef2746b44277591d341dd8ab6822217c2bf28dc2c5_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2441eb2f33cf7c06c308d516671c7def7e18f26e79feacf9ae4fc5608cc2d53e_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3fa69b120f7da95ea9fe2463a324804cbf05aed73f3a6abd73ab294dcf9e5ea9_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:80dedc04ebec5eeeddebc3f967b9082b445a2d7c45860de4ce1cc837d046ed48_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:dc002c0e170f8c78eebfd041fdaddf46ca9f10a2047c3a6ee3a1bf7ab2e700d8_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-operator-bundle@sha256:04cc84b596ec09d86e9764f0faec57fb74cf327dbd1b0cb486ae3136cd7f2f79_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:d43de758421a55efafe5577f15059096b357600ac8e82d75a4934edeca058f6c_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:3b4de23ed6a4f295b104eec37a000a0646bbe6f9711b44d9c4110922561b0023_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:8ca6be01e5a2449f015c9058f30a9042d0d2c5e12a230fa91c039d865b602f0b_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:95ce44a731d23d56b7cee6f7bb99fd03c6dbde080f53c63b9d5f9b408efb05d2_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odf-rhel9-operator@sha256:feb2ee35975f9b55fcd4512395837e82ee74b309e6c93e016649c1032ae90efa_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:c649a49604855c249d03ce792edcb9ac269a55db43a4f2e2159b57de607607ff_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:e7ac262603d2d28b0b3b2d74b23b4d3a0bc73f24fbd2a9b9356304dc7e949bd8_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:97363c4d93c05c416ac5d0e2bab39f24a16c9825e0d43ec631b6df86bbdfa651_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:75d3d3d3b0245847b0e1ffa0832842fccaf6e4cd50d81cd460aa933313edf763_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:91cafd04ad7e3c1ed6e9548071e81d9409176962f8d2b573163c86eb54abd6f0_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:d81a244794b339c8855998fe76a3962b27e463b48d5fc30920648a8f7751d2d2_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/odr-rhel9-operator@sha256:fd29950e0dee7c1340d33ac11f4c2cf7601c0384c3ded5db843c27491f1d3022_s390x",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:48be64123e357ea454d4e7ec8246a6deeea48f58e2834122323b44483ed3a064_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:257cd7e19559492beb3f3d6e4915b6278c621a1c8a7074af6f3d2b98913aeffc_arm64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:34ee586d8080c9706ca333fb93ced9f5f5fc041d7e916903317e907e37b9b4ca_amd64",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:e20db37c1f9ffbb5a26f4d295387e6698257440e0bdc46eda984f12bd88d1933_ppc64le",
"Red Hat Openshift Data Foundation 4.2:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:f902eaefd677c134a95df2ca93caf7c1f60febe7207d32371b634f7aa0706bd0_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:26413
Vulnerability from csaf_redhat - Published: 2026-06-16 16:45 - Updated: 2026-06-29 17:50A 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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64 | — |
Workaround
|
A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Data Foundation 4.19.19 security, enhancement \u0026 bug fix update",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Data Foundation 4.19.19 security, enhancement \u0026 bug fix update\n\nFIXED BUGS:\n==========\nDFBUGS-7063: RHODF 4.19.19 release\nDFBUGS-7062: [Backport to 4.19.z] ODF Console is breaking\nDFBUGS-7047: [Backport to odf-4.19.z] Update nodejs from v22.11.0 to v24.13.0\nDFBUGS-7017: [Critical] Upgrade ceph version to RHCEPH-8.1z6 at ODF-4.19.18\nDFBUGS-6845: Backport to odf-4.19.z intermittent S3 upload failures (HTTP 500 / InternalError) when uploading files to NooBaa buckets via JFrog Artifactory\nDFBUGS-6742: Backport to odf-4.19.z ODF 4.16.21- noobaa-endpoint crashes with Exit Code 1 due to unhandled AbortError from @azure/storage-blob\nDFBUGS-6488: [Backport to odf-4.19.z] rook-ceph-exporter log causes huge ODF must-gather\nDFBUGS-6461: Backport to odf-4.19.z [RDR] Partial s3StoreProfile missing in ramen-hub-operator-config after upgrading hub from ODF 4.17 to 4.18\nDFBUGS-6317: [Backport to 4.19.z] rook-ceph-mon-endpoints is overriden in external deployments\nDFBUGS-6177: Backport to odf-4.19.z Noobaa POD keeps Failing when Clusterwide encryption is enabled with IBM KeyProtect on ROKS Cluster\nDFBUGS-5903: [Backport to odf-4.19.z] Ceph PVC\u0027s not provisioning or mounting after ODF v4.20 upgrade",
"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:26413",
"url": "https://access.redhat.com/errata/RHSA-2026:26413"
},
{
"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-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26413.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Data Foundation 4.19.19 security, enhancement \u0026 bug fix update",
"tracking": {
"current_release_date": "2026-06-29T17:50:57+00:00",
"generator": {
"date": "2026-06-29T17:50:57+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26413",
"initial_release_date": "2026-06-16T16:45:54+00:00",
"revision_history": [
{
"date": "2026-06-16T16:45:54+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T16:46:09+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:57+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Openshift Data Foundation 4.19",
"product": {
"name": "Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_data_foundation:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Openshift Data Foundation"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Ad39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-operator-bundle@sha256%3Ad352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-operator-bundle\u0026tag=1781555689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"product_id": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-operator-bundle@sha256%3A57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-operator-bundle\u0026tag=1781553887"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781551060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Afc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-operator-bundle@sha256%3A781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle\u0026tag=1781553892"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Af639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"product_id": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-operator-bundle@sha256%3A1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-operator-bundle\u0026tag=1781553978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Ac2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3Ad1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Af603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256%3A1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle\u0026tag=1781553463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"product_id": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-dependencies-operator-bundle@sha256%3A656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-dependencies-operator-bundle\u0026tag=1781553947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3Ac432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781551098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-operator-bundle@sha256%3A672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle\u0026tag=1781553717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Afc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"product_id": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-operator-bundle@sha256%3A5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-operator-bundle\u0026tag=1781553498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"product_id": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-prometheus-operator-bundle@sha256%3A9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-prometheus-operator-bundle\u0026tag=1781554193"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"product_id": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-cluster-operator-bundle@sha256%3A21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle\u0026tag=1781553862"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"product_id": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-hub-operator-bundle@sha256%3A332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle\u0026tag=1781553830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"product_id": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-recipe-operator-bundle@sha256%3Ab06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-recipe-operator-bundle\u0026tag=1781553918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-operator-bundle@sha256%3Ab8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-operator-bundle\u0026tag=1781553701"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Accd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Ac7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Ab6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781551060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Aa25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Af63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Aca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3Ac779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Ae410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Aa4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Aa3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781551098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Accd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Af8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Af194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Aaacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551472"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Ad1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781550255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3A3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781550415"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Aae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Acaf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781551060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Adde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Ac9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Adead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Aaa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781551098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Ae018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef?arch=s390x\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551472"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2?arch=arm64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895?arch=arm64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781550593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781551060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Afc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781550551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781550615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Ac612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781550670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Ad597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781550777"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"product_id": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cloudnative-pg-rhel9-operator@sha256%3A7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator\u0026tag=1781550759"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781551276"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Acc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781550761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Aa6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781550908"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Ad17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781550957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Afc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781551499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781551098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781551130"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Af4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781551169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Aa1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781551235"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e?arch=arm64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781551472"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64 as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le as a component of Red Hat Openshift Data Foundation 4.19",
"product_id": "Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.19"
}
]
},
"vulnerabilities": [
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_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-16T16:45:54+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26413"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip"
},
{
"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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T16:45:54+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26413"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_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-16T16:45:54+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.19/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26413"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_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 Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:d352e6540cd5ca2ff7eaf63ec47ba7c002ea4a8c45a1f42415e4fbb2110276e0_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:00d4622c0e21f50569ea61d2deaf5b9c2cd8d859fab70c979241df06227a844b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:25f33b805d92b80851b73a8fcc13f2205ef0b0ba417cd61f6306c39c4f805e9d_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:98927f83a6402a800af93c5ea028f3ca58b005abe674266b726d9d305e89f2d2_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:9e085e36b9a18184ab1dd3af35488ff91bcec58281bd3482e76913221f488077_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:ccd830c680500ea444670c1625af4f389e663bd08e990acebf0a66fd72f21a64_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d1a24469e633c7a953508b9b219ae96eefea3b92f0ab8bc8fded8b2b71e4c893_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/cephcsi-rhel9@sha256:d39c457574dff2f6f34a4b93e6076d0b30f441420532b9f6ef4ac63557388436_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:10e4b0b1e5c8104a84ef65716dd04836a12c509f1e2bb75382998b4dc2f0742c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:3cdcddbfb15f678409e770654ad17af03531e161c3e0eb56074b2a83cdee8068_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-core-rhel9@sha256:6a97a25a60d77f764e67635e0512d0330b8bd814df805033c34a412e19c3b2f3_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-operator-bundle@sha256:57836fe7327e7d62d4ced14995a57db892ce5cfc50c463f1e0ecc4f7f295826f_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1f2b2710f02f4e67ea9b86f6a8756311b1e623f2a52fa7c39fd2c8fd8de86895_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:369179e1978b016b4075850bc097c2bde4b244412fb6d98ff1701840dea23539_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:ae7c45d0087e6d85e134aabc75d21fd2ec18797dfb1b8a3386706f35a97dfe0c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7afbf3509237274bad9f209e841d58266b0df09a0f29d2e9798974c6182d8a9_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:08f92dc9db6f68e8e2ac88fa81689d5e3254350c54a5b382a97a24300dc6b316_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:0a0b8b1fb1f12a69ec5dbdf87c50912574b4c9d5c050687fd9e45d413e955992_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b6570ce1a059b538b6e68a65efafb2909f9f39e4fc0d166131747f9578ef6819_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:caf21f4c49c318e7e1333384e0d0df7b8ea2caa71ea6225fec04b0f2ae62481b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:781b7ac85ff24b65c1416b64b8abe2c165a1626350b9f05e135b5d66992ac742_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:26e7a63c75f38d55dd7b7682e97f17f195abb6519e8a09ebe430f6299851c6c1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a25dea6da75400b7cf04602e2d25a9ac619b2263094f1e3de378310dd39e34c7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc2f5ad84aae7206ba516ecac91bc5437b8796d98e2aca8b6c61a4a7455581fa_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:fc74ee3c16a984367dc75fe269fcffb1e3e264bf05e9fbc09b565e46d35bd84d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:53e652888f7168c71b29c32e6c982c761aa512b1e2732fb5c5abfe3c9014a131_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:58fa783504840df7ee010fda1200aa6314002795dd3f6c2c0547c11617d13765_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:5b4bd8cc4c3b7aec84a14c30f7828cc04f24b076b1e8aaeccd07dffc8dc893a3_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:f63c2de7163e4783603c83a547d0fb3574c56b2a60a488354f37360057612c90_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-operator-bundle@sha256:1f0f684416ef8c1e1f9a14b76ad0661a2cc53db565943eb979b1395bd73c1a6d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:992d501e87ed974aa888088d9f07773f42ae8714b665e1fea5e73e87b35deb3c_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:c612f726ee1146613db00c12cb6d088565432a2445c2dc3611f33afbee6da730_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:ca62f7230100e48f567fa129ef18069f9e6d34c3961161752176eaf266567d06_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:f639c087918834b7f13d2857fd78fc82189a33b3918113cfd384f0e445870247_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:529761b7bbc0c4b6032724d0ff84d9346a0feee795c90dbedb755c3fcdd43aeb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c2cea7782b534280e66d016690ef09842bf477b89813bcd9e89ed8bf0a5dfa8a_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:d597e612bd28dba40c6e02d9b63219476842584b6b62b8c09e00f6a5cad93a0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cli-rhel9@sha256:dde346bbf7a98ad7014ab34b3f59749954fac466690da33bcb2b341ac6af3c9f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:2f88b78641b79418f23f9e25790ead30ecc4394d77b018c004ee1cb41400c4f1_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:7a5f2ab5ca345c1663ac77a71fdd5b4aa0ceff5254b9e22ab1e8e0f057823ac9_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:c779ef2335c043bd73fbcb9c812a5fa1e5602df896f3ec971d6b97ef9778bf7e_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cloudnative-pg-rhel9-operator@sha256:d1b8a0c52028c8e7dbf435e83ed2f60b691c76bed480eaf4634f56608fb10339_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:034e678dd63c4172bd71a6db3077de19b9a5307ffcc403e4bfe10562cd5dfd0c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:748b8785864ab0c5ca872b67b80dc86b69d1d86edc9eea9e1c7b88f7f51185a8_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:9b6d6ece3d2c98f81467d647fff02b7a61210931bc8bbf5ed499fcd7f02c3cbe_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-console-rhel9@sha256:c9ac9e014bffed04f380a22d77e4bb42e865b5f469b857c330a7f151887d151b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:506f0e85d17463d4d625e3aa628c7862420563b2ad99c3503cc9a310f778294f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:7269016ba7bd3c2f1263d8c7563a1c02b07b8ae80f5ae3b770baa8f1e41fdd93_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:732b367e7c8bbdc7e6b89f534f5507560d7807ff7c1c43c909c49a24a75d38cb_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:cc19ef313859ec57d9a735be69a2649dbc711718d99b4c89cf3abd968be3f1dd_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:1b4dd47d8968a6aca7007de37c60a1b67317b91b8b644bed3b55a792ac53c80e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:562f6c17cd2a238edad7356a61dd2ca5086be5ec5c59b33102e8df8bf3c3c279_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:a6bbceffec08d8c5e008903e9bf484cd01f0a8e0e87a7d7bb25d31ade9fd9f8a_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:e410f90555f4bec62d60688da5540c1b409adc5254bf317125ea8d99e79f4e61_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f603c988bde6d4e3081857dfe97b5e199260b14d21a2ae2c6e077b704d552b9d_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:2ca7231a84354d4f2f9118196785932ec66a778e38edf7d03be8957c4b00c8dd_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a4cfc55e18572a5ef1d8a2bdf70d7e0a0f1c45fb80c219b1a33b158dba2c375f_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:d17e1401db5eed59554c001a0b8999a6b9025798abe2c4d59eca14f053700a25_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:dead2a59f1e1a936d0267ffd654ba84620eeadcbd735e1d5390bcb75af237adf_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:656091ca47fdb06d07a126a7c35eec4c113da58b6493c0cc172cfa5780159b43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1e4c28928e676e1260c70da526b7c17054974457605bcff233c3d2ef1c1f856c_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a3c0c6a9c806568dbac3f5d52255a2ed8334e422ac656a1489c3436faabe8bf7_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:aa4e2e78b761ed8fe036adf3a599cbfd8dbecae4a589954a784cd359c0bd8984_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:fc8ae2b46ce61e352a8c10d9f35576fd6cef818fe53eefd9ea4cb10f4b16d231_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:672b060b688967c6962ac1569f2c6a2f9deb40194e04824eba7aed82d55b1e99_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:079de2b51d0840a8a47ad3c7eb8d552aecb385a1446bc88bf0336d77f76677b6_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:256b3b112672839de46c680f68fe9401b01554455f0cb430030103919c1be232_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:5ccc882de0e45086fa1821dc87552ece6a6bf763557a37cb6784c9dc3b61d25d_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:c432b8106505cf49675d29e7bdf1616a88867623951148bab7bd4f391a6b5f29_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:0729eadbca5c55a9bb2caedcdfc65e993af615c1196c95ec19dd9677af3d7549_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:2cfb0f7a48badecfd0aa15e69860caec631e7165222904c6e50437c10d0bc349_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:591867c218fc30ac04a0e7c4319df5add8c1522307bdb7e22395eedada4ac514_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:ccd74b42cb2d578b51274e88bd736677e343e52d0cc890f3adf6ad7e21bf8bee_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-operator-bundle@sha256:5d08df00430af13d8552a444934e226a6cf31aded4b81f6474e1863a4397ff70_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:9799abdd7562ac652f382e00d5a371c9ccbb527ecd42c2123fadc2d8d6c5584e_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4204f688b30c557d1567573b948a2c56d76c411f68347f48c14e99a4e49f171b_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f4ea3563f451ebd33184a19ea940c3aadc6681d5da4abfac188e70ee7b55f3eb_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:f8ee2ab7785f14262c1468b26d2e3c9d085b150fdd1d0dead515f98d3b769209_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odf-rhel9-operator@sha256:fc3c7cdcd49257dda8508fe988328d3bb7c286fec587e1d27b84bb35b7269135_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:21b9257f6e132a511a90a98c692dfe68c0525c652f4d31ad25ccba54a64ea428_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:332e26b928a2cf518d8ca6d710c68883ef954e7fc088d409680a148454196d38_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:b06f8e193f1ce2d4e6c70eed575f722a49df9223fc3d58ebc2228b972dccedb5_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:054cf4a13da3d6a624f27882aebf1abaef1a71929302d90f02b97ef82314a23b_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:a1ea87f681c5486f09cdae8fe5531172f45159177323f27b0fb5e604e64ae8b8_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:e018f1794ed059a420a7c435f6f34be8b14c181f5ba1474f7e10f7b70ef37a2f_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/odr-rhel9-operator@sha256:f194d648b80c6855f20fbfaceb79506766600be52ca3599ade4dac038c2f6bba_ppc64le",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:b8416edea3287aad78ad05eff2443c0d52bd55b4d94bc920d215076d92595e43_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:2e3b949935c02038dee7cff5d3ecfcd92d4632484fe4ac7569595ff32d2f8d0e_arm64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:443e1e9f6885fce6f2af25d5c2a1b07c25c866e6ac26257da83e4337c19ff552_amd64",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9873723d9e3ec3e51f021cce4fa313a8ea53ba327e3afb7ead29ff4c2f5296ef_s390x",
"Red Hat Openshift Data Foundation 4.19:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:aacf64515f3ab2ad8bc60c7196ece67ae2abe175696857e7a1321b4c09b4cf62_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:26416
Vulnerability from csaf_redhat - Published: 2026-06-16 17:09 - Updated: 2026-06-29 17:50A flaw was found in fast-uri. A remote attacker could exploit this vulnerability by providing a specially crafted Uniform Resource Locator (URL) containing percent-encoded path separators and dot segments. Due to incorrect processing, fast-uri would decode these elements before proper normalization, leading to distinct URLs resolving to the same internal path. This could allow an attacker to bypass security policies that rely on path-based comparisons, potentially gaining unauthorized access to resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_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 Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Data Foundation 4.16.30 security, enhancement \u0026 bug fix update",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Data Foundation 4.16.30 security, enhancement \u0026 bug fix update\n\nFIXED BUGS:\n==========\nDFBUGS-7345: RHODF 4.16.30 release\nDFBUGS-7105: [Backport to 4.16.z] CLONE - ODF Console is breaking\nDFBUGS-6743: Backport to odf-4.16.z ODF 4.16.21- noobaa-endpoint crashes with Exit Code 1 due to unhandled AbortError from @azure/storage-blob",
"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:26416",
"url": "https://access.redhat.com/errata/RHSA-2026:26416"
},
{
"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-6321",
"url": "https://access.redhat.com/security/cve/CVE-2026-6321"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26416.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Data Foundation 4.16.30 security, enhancement \u0026 bug fix update",
"tracking": {
"current_release_date": "2026-06-29T17:50:57+00:00",
"generator": {
"date": "2026-06-29T17:50:57+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26416",
"initial_release_date": "2026-06-16T17:09:21+00:00",
"revision_history": [
{
"date": "2026-06-16T17:09:21+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T17:09:34+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:57+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Openshift Data Foundation 4.16",
"product": {
"name": "Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_data_foundation:4.16::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Openshift Data Foundation"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781183284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Aeedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781183499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1780663368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"product_id": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-operator-bundle@sha256%3A35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-operator-bundle\u0026tag=1781185743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781184121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Ad61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1780663596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-operator-bundle@sha256%3A19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle\u0026tag=1781185745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781183713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1780663548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"product_id": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-operator-bundle@sha256%3A0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-operator-bundle\u0026tag=1781185750"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Ac90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781183811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781184611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1780663638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1780663861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256%3A3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle\u0026tag=1781185755"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1780663920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781184484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1780663886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-operator-bundle@sha256%3A99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle\u0026tag=1781185757"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781184239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Adb9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1780664089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"product_id": "registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-operator-bundle@sha256%3Aaa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-operator-bundle\u0026tag=1781185763"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"product_id": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-prometheus-operator-bundle@sha256%3A100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-prometheus-operator-bundle\u0026tag=1781185770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"product_id": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-cluster-operator-bundle@sha256%3A5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle\u0026tag=1781185775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"product_id": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-hub-operator-bundle@sha256%3A10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle\u0026tag=1781185775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Acf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1780664140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"product_id": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-recipe-operator-bundle@sha256%3Afd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-recipe-operator-bundle\u0026tag=1781185781"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Abdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781184468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-operator-bundle@sha256%3A8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-operator-bundle\u0026tag=1781185782"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781183284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Ab0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781183499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1780663368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3A6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781184121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Aa18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1780663596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Abae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781183713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1780663548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Aba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781183811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781184611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Ae91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1780663638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Af7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1780663861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1780663920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Ac5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781184484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3Affee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1780663886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781184239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1780664089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1780664140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Ac056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781184468"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Af69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781183284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Acf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781183499"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1780663368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Ab28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781184121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1780663596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Ad4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781183713"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Aacd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1780663548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781183811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781184611"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Aa9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1780663638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1780663861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Aa01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1780663920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Aa7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781184484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1780663886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3Aaac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781184239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1780664089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1780664140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622?arch=s390x\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781184468"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Ad1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375?arch=arm64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1780663368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1780663596"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Ae1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1780663548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781183811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1780663861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1780663920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1780663886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781184239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Ad813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1780664089"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Acdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1780664140"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64 as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le as a component of Red Hat Openshift Data Foundation 4.16",
"product_id": "Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.16"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-6321",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-05-04T20:01:14.938426+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466582"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in fast-uri. A remote attacker could exploit this vulnerability by providing a specially crafted Uniform Resource Locator (URL) containing percent-encoded path separators and dot segments. Due to incorrect processing, fast-uri would decode these elements before proper normalization, leading to distinct URLs resolving to the same internal path. This could allow an attacker to bypass security policies that rely on path-based comparisons, potentially gaining unauthorized access to resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-uri: fast-uri: Path traversal vulnerability allows bypass of security policies",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6321"
},
{
"category": "external",
"summary": "RHBZ#2466582",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466582"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6321",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6321"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6",
"url": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6"
}
],
"release_date": "2026-05-04T19:31:57.253000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T17:09:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.16/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26416"
}
],
"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 Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "fast-uri: fast-uri: Path traversal vulnerability allows bypass of security policies"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_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-16T17:09:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.16/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26416"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_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 Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:4c908b6426368804cb7694daa9f2be625cc45867748d12e657667a8f3188d7d3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8fa720611f9480c85a98aa02820b753375e3a2b6cf3ff48c2cccfa85f252ff9d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f69bcbc5bdf7272f9d6ff498d7050551eb68d90b49a62fb7b064c619b37cc629_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:b0dac1e8fc63c2dd29c896226296b516e5c2f9392262492df513e2a4e4aa52bb_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:cf532216fd16054fc33c7b89ee46b96ff41b9efc410a9934c60e65c6ed6006b2_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-core-rhel9@sha256:eedc6c9a38e39361ae04d9b750b94a0d539d2d4507c7274dc1b3c0846269baf0_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-operator-bundle@sha256:35dbd7464e835f16ec99e684f9de9b1a201a962f0ae1ac53e5162827dda4c4aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:3cf76024b99b9613a66e4d1ca8184c524ea96ed96c1ddf8c7d27f31ec29659c9_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:6a6b1c4e9b737fa2ce70779a58eeb5c6cfaa81d3cf7bb9d5ca3270082f3436dd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77ec395add21168ca60cd78c4b7d938d4a5c7766ce8037bfe1d6a221a38fd79b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d1c67a820a8f37f1e0e36ed864a3d662a7e669cc0bad90f4eb38bee924a9e375_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:6f6a208f69ed10ba8bc11ce5aeb9dffe758726c7ff6d98f4521df0ba4052203e_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:9f973b754c612e8632ca6517be654f027523b4493bcea3797e0cc15164a819d9_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:b28165a0ac6def027d1384f5453916bb2b0cb7f8afd044f202e4499805bcba0b_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:19b13d71bbc308e19ae6ceb88ebbccd5fe0cc3c701ff3af332aed334e6380e17_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:2d584a541c4d5f485278aa1b1ecf6e242a115efdcdfc8485de19770c8f392574_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:644122a3d45ee9f92d5e61865fae94774bcb8430addbb432a490f0bd1c1beffe_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a18bce14e210c57ff36cc99bcc55fd595de761fa534e62d5d192e9a918c1ee28_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d61e981b9427b788b01000b7fb6bfab573fe5001be835b8338cf49b85baf716d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:0dc5a68a11bf8d4545a6c51f77634f79929c3a35eee35e853255b5cc73c0aecb_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bae0120899ef5e5e677e76e88c7f1e9e02c16de0bd241f80036a59d190063343_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:d4aff3e1d59401026e51722e0d36147484192faf1b5cf2389901a2de062d713d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-operator-bundle@sha256:0dbecb19f18e46b109c928bb4f94d1a680adfbc8af91f20a13717830ccb97eba_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:0d9e24a47f3ce64f30e88443ab469f797ea731f7ced30e74fbe45cd6c5dfaf98_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1f4703c4f401b1b0cd1bde4a812fd4bf398839c8bf3270ef41df7f36e8c4f073_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:acd1f0a6da87f3e4cc65232ed8d33b44e7863884633f5ad8acade2e2e38031ae_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:e1d678f8337d4427babca4b049f588c101f33ed90c3013feba668c831783504d_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:6149b48827753a67192321e9739240485da5924022416aef62de6b59fb61a48d_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:67e27737e1f7575b2e326a22cda7873793b88c35decb2525e92fa0dcc78216bb_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:ba1c4bb0c270b32e5c5251d1efaafbba0626ca63a1b192db629c0e1d19885598_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cli-rhel9@sha256:c90850c314d7ae67405f78435130f21a89b54ed7f7d89f04b7ed286aa4f10e14_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:41ec6bee58683e5e43fee32fc919de3dc8daddc8de7cd2b669126e6801fbaf00_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:53fdb9e72c231c5d63e3957cadc42bd7b4043dd4a41ed6a356ec8f36402afcf8_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-console-rhel9@sha256:72dc982b5fcc69b7208d9d2b15df7d124d9099ac08c25c08befabcc08aa28093_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a27a546f65bd11c6bc0f8e89b010dffd5917121b2960504464af119450b98f2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:a9bf78ba1987f7246080f43dd5e046ff7b9f678cf9fc56e5337a13a6f4cb5534_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:e91c0eca936d7d14e393f4bb221d2bf406be6462aa49bf29b14a9a9a469badb3_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:3203a26b2b0f8d359055d6ac4884dd789e8fa36fc6c8577b1025cfe2cca9b548_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:34573ea061950329ff4c22ded8e7f058e8539e84d54fb64303a07ade198ceb6a_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3519733e08610b44f3999ab3f5c251eb0032dd201d564501157263d96dfe1a6d_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:373434da51f9a8de00f5c80f0b3d26b39993f9384aec981c7a333cccc57982e4_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:f7b8ee34c4affc4f309900f6f735fb211d5c14afad6306d4a9b4c87a76243d39_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:079167c8672badb44551a922805ea810c0ae91af7f4616e8b87facb163599ef5_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:20206d391cbccce67f97d2e7902ae8bdeec6457195c265de201bcfa2cefc87f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:8797b601adc473cf6ac7ccbdf13af9f3aa1c68a99523286b19c6c9d54acd1c36_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:a01573692a04c5956f3bee32fc54236653e3f3c40b900f1f1dd8a7f28f497098_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2a645ebae011a7e2a769e321b2fbbe4e85b41be7223ab58f46b0daaafbe433e2_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a7797a4aa8cddbd8a8323d1f4b8fec830c3308962d5486045f07f559a6c6fbe7_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:c5006cefd5b859158eccd466b888efc80961bf33db621d56b0f5becad4d65f3f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:99a297324487c756e225192b3b8048a9eed953f8e4eff6ba1cba466b4dead6f5_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:42447dbb7970dc4680f71aca316359df4358d56089bb472d0ffb439bf1127068_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:64a115196f540837ede6c4aa609a1af755a72b11566906c598f63d50004b8324_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:7d06e0b348347fb20f968abc07ced0934ad7ebee6819fd7f6a2608dfe90b9bc0_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:ffee23ee519f292485062231818eeadb8148028828a97612024eb2fbe9061620_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:136d60dd6dc90e0f8074151f12c3cf4d917d75affeb892ab13c94a5384be3dfd_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:1f9240e6525eb828fbf12efebfa504e89833f7c75c58acc5dcaf81c4e7b99618_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:8d05e234d03462e5b1a3758e9be6d6883e844749de908c3c3a2334c64db5f328_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:aac24a31badabf51fa1f4f125076e3e06024f962979334b5708c14bbe19498c1_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-operator-bundle@sha256:aa71adbe901fd559b5bf8b39b878187d97f7715c7723b4dd7ba5b6fee856f075_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:100cf9edfb78d3ffb63d8b812a384aadd4cf475582c948b2f4b9971b39e129f1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:302ae6dd01abd789d118e37c223d33a7354112d241566f07d880d3bf9641b184_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:6d1a86c208ce01e7ab603e582e494013398dca6f5e5d82b143fd39796d5348ea_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:d813ccd26ed8fc4c2644f325886176bcd85c8abeaee66faaed5804dc77e7f556_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odf-rhel9-operator@sha256:db9142fea2a81603c97e9272d4f13459da75e0764459f1ed9842ea3c6360f295_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:5a1cd02e31cfd8a84b1fd49dbc4ecf6b225fb31dc79c978ec954b7a104673739_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:10a528fd7b2e9f0391b504fc3beb181c8be748efc6e047c31dd55187a97c7cb3_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:fd7400980a8fe7e60a8f1601fa324d947b09555f10378caa16292d4d625104c1_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:07cf529fb8ef263971bdac6a802587a6b336a5b5bcbbd39f1d27d14005975438_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:0fba4f512dc9eb0b1f7057bed9e26de6fa4440577788946d76b6a9ad54a1c10f_ppc64le",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cdba2927d67f70a68ed1ba9075ef0b2169f4ae2867f9bfedd79758294283ffdd_arm64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/odr-rhel9-operator@sha256:cf726320cc1da59e1b5ab8d2da4f4be7b5bba603efad624560576c5f38865772_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:8614258d0fcda4153aed0cece0d7c1f1ea79404503e73c54634582d497da03aa_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:9fb28288c03607f995ed5d632d54c732e38365336199d8806973683dde6a0622_s390x",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:bdf5ad4e22f8fad3aef863050891089ed717534c2ec49a1b02e48ca98d79bf62_amd64",
"Red Hat Openshift Data Foundation 4.16:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:c056846408e649b9f7e6f937b5ca4db13135cede34f7c29d30c74c3fbae61046_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:26420
Vulnerability from csaf_redhat - Published: 2026-06-16 17:21 - Updated: 2026-06-29 17:50A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
Workaround
|
A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
A flaw was found in fast-uri. A remote attacker could exploit this vulnerability by providing a specially crafted Uniform Resource Locator (URL) containing percent-encoded path separators and dot segments. Due to incorrect processing, fast-uri would decode these elements before proper normalization, leading to distinct URLs resolving to the same internal path. This could allow an attacker to bypass security policies that rely on path-based comparisons, potentially gaining unauthorized access to resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — | ||
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
Workaround
|
A denial of service flaw has been discovered in the fast-xml-parser npm library. In fast-xml-parser, a RangeError vulnerability exists in the numeric entity processing of fast-xml-parser when parsing XML with out-of-range entity code points (e.g., `�` or `�`). This causes the parser to throw an uncaught exception, crashing any application that processes untrusted XML input.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Data Foundation 4.18.24 security, enhancement \u0026 bug fix update",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Data Foundation 4.18.24 security, enhancement \u0026 bug fix update\n\nFIXED BUGS:\n==========\nDFBUGS-7107: [Backport to 4.18.z] CLONE - ODF Console is breaking\nDFBUGS-7064: RHODF 4.18.24 release\nDFBUGS-7046: [Backport to odf-4.18.z] Update nodejs from v22.11.0 to v24.13.0\nDFBUGS-7018: [Critical] Upgrade ceph version to RHCEPH-8.1z6 at ODF-4.18.23\nDFBUGS-6843: Backport to odf-4.18.z intermittent S3 upload failures (HTTP 500 / InternalError) when uploading files to NooBaa buckets via JFrog Artifactory\nDFBUGS-6739: Backport to odf-4.18.z ODF 4.16.21- noobaa-endpoint crashes with Exit Code 1 due to unhandled AbortError from @azure/storage-blob\nDFBUGS-6486: [Backport to odf-4.18.z] rook-ceph-exporter log causes huge ODF must-gather",
"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:26420",
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-58183",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-22029",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25128",
"url": "https://access.redhat.com/security/cve/CVE-2026-25128"
},
{
"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-6321",
"url": "https://access.redhat.com/security/cve/CVE-2026-6321"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26420.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Data Foundation 4.18.24 security, enhancement \u0026 bug fix update",
"tracking": {
"current_release_date": "2026-06-29T17:50:58+00:00",
"generator": {
"date": "2026-06-29T17:50:58+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26420",
"initial_release_date": "2026-06-16T17:21:21+00:00",
"revision_history": [
{
"date": "2026-06-16T17:21:21+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T17:21:28+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:58+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Openshift Data Foundation 4.18",
"product": {
"name": "Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_data_foundation:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Openshift Data Foundation"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3A8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781555717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3Ac1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"product_id": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-operator-bundle@sha256%3A91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063?arch=amd64\u0026repository_url=registry.redhat.io/odf4/cephcsi-operator-bundle\u0026tag=1781560319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Ad9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781555645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Ac7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781556009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"product": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"product_id": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-operator-bundle@sha256%3Adedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f?arch=amd64\u0026repository_url=registry.redhat.io/odf4/mcg-operator-bundle\u0026tag=1781560103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Ad2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781558423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781555708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"product_id": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-operator-bundle@sha256%3Ab5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle\u0026tag=1781561238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3Abf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781557202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781555679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"product": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"product_id": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-operator-bundle@sha256%3Aef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f?arch=amd64\u0026repository_url=registry.redhat.io/odf4/ocs-operator-bundle\u0026tag=1781560412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Afa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781557189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Af67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781556534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781556085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781555971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256%3Aa4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle\u0026tag=1781560693"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Abe4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781557158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"product_id": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-dependencies-operator-bundle@sha256%3A786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-dependencies-operator-bundle\u0026tag=1781560000"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781556690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781558326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-operator-bundle@sha256%3A7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle\u0026tag=1781561060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781556544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3Adbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781556958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"product_id": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-operator-bundle@sha256%3A5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-operator-bundle\u0026tag=1781561286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"product": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"product_id": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odf-prometheus-operator-bundle@sha256%3A673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odf-prometheus-operator-bundle\u0026tag=1781561059"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"product_id": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-cluster-operator-bundle@sha256%3A0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle\u0026tag=1781560158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"product_id": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-hub-operator-bundle@sha256%3A30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle\u0026tag=1781561780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3Aca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781556901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"product": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"product_id": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/odr-recipe-operator-bundle@sha256%3A6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd?arch=amd64\u0026repository_url=registry.redhat.io/odf4/odr-recipe-operator-bundle\u0026tag=1781562697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Accd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781557496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"product_id": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-operator-bundle@sha256%3Aaf11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae?arch=amd64\u0026repository_url=registry.redhat.io/odf4/rook-ceph-operator-bundle\u0026tag=1781560380"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Af65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781555717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3A255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Ad1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781555645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Ae011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781556009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Aca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781558423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781555708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781557202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781555679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3Aaba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781557189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3A90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781556534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3Aebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781556085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781555971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Abfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781557158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3A2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781556690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781558326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781556544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781556958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781556901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3Acd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2?arch=ppc64le\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781557496"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9@sha256%3Abb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9\u0026tag=1781555717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3Ac0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f?arch=s390x\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"product_id": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-core-rhel9@sha256%3Aee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-core-rhel9\u0026tag=1781555645"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3A77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed?arch=s390x\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781556009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-console-rhel9@sha256%3Af8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9\u0026tag=1781558423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3Aa1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781555708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"product_id": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256%3A3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9\u0026tag=1781557202"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3A1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd?arch=s390x\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781555679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781557189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"product_id": "registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-console-rhel9@sha256%3Ab5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-console-rhel9\u0026tag=1781556534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"product_id": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256%3A942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9\u0026tag=1781556085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3Acb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781555971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3A1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781557158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-console-rhel9@sha256%3Aa2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9\u0026tag=1781556690"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3A1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781558326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781556544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781556958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a?arch=s390x\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781556901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"product": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"product_id": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rook-ceph-rhel9-operator@sha256%3A850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86?arch=s390x\u0026repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator\u0026tag=1781557496"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"product": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"product_id": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cephcsi-rhel9-operator@sha256%3Ac0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114?arch=arm64\u0026repository_url=registry.redhat.io/odf4/cephcsi-rhel9-operator\u0026tag=1781554936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"product": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"product_id": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mcg-rhel9-operator@sha256%3Abdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94?arch=arm64\u0026repository_url=registry.redhat.io/odf4/mcg-rhel9-operator\u0026tag=1781556009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"product_id": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-client-rhel9-operator@sha256%3A99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator\u0026tag=1781555708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"product": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"product_id": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/ocs-rhel9-operator@sha256%3Aaa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed?arch=arm64\u0026repository_url=registry.redhat.io/odf4/ocs-rhel9-operator\u0026tag=1781555679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"product_id": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-cli-rhel9@sha256%3A779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-cli-rhel9\u0026tag=1781557189"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256%3A50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator\u0026tag=1781555971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"product_id": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256%3Ade7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9\u0026tag=1781557158"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"product_id": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256%3Ae4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator\u0026tag=1781558326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"product_id": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-must-gather-rhel9@sha256%3A3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9\u0026tag=1781556544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"product": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"product_id": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odf-rhel9-operator@sha256%3A1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odf-rhel9-operator\u0026tag=1781556958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"product": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"product_id": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/odr-rhel9-operator@sha256%3A64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee?arch=arm64\u0026repository_url=registry.redhat.io/odf4/odr-rhel9-operator\u0026tag=1781556901"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64"
},
"product_reference": "registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64"
},
"product_reference": "registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64 as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le as a component of Red Hat Openshift Data Foundation 4.18",
"product_id": "Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
},
"product_reference": "registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le",
"relates_to_product_reference": "Red Hat Openshift Data Foundation 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-58183",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-29T23:01:50.573951+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2407258"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/tar package in the Go standard library. tar.Reader does not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A specially crafted tar archive with a pax header indicating a big number of sparse regions can cause a Go program to try to allocate a large amount of memory, causing an out-of-memory condition and resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to be able to process a specially crafted GNU tar pax 1.0 archive with the application using the archive/tar package. Additionally, this issue can cause the Go application to allocate a large amount of memory, eventually leading to an out-of-memory condition and resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-58183"
},
{
"category": "external",
"summary": "RHBZ#2407258",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2407258"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-58183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-58183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-58183"
},
{
"category": "external",
"summary": "https://go.dev/cl/709861",
"url": "https://go.dev/cl/709861"
},
{
"category": "external",
"summary": "https://go.dev/issue/75677",
"url": "https://go.dev/issue/75677"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI",
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4014",
"url": "https://pkg.go.dev/vuln/GO-2025-4014"
}
],
"release_date": "2025-10-29T22:10:14.376000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/tar: Unbounded allocation when parsing GNU sparse map"
},
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_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-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-6321",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-05-04T20:01:14.938426+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466582"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in fast-uri. A remote attacker could exploit this vulnerability by providing a specially crafted Uniform Resource Locator (URL) containing percent-encoded path separators and dot segments. Due to incorrect processing, fast-uri would decode these elements before proper normalization, leading to distinct URLs resolving to the same internal path. This could allow an attacker to bypass security policies that rely on path-based comparisons, potentially gaining unauthorized access to resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-uri: fast-uri: Path traversal vulnerability allows bypass of security policies",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6321"
},
{
"category": "external",
"summary": "RHBZ#2466582",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466582"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6321",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6321"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6321"
},
{
"category": "external",
"summary": "https://cna.openjsf.org/security-advisories.html",
"url": "https://cna.openjsf.org/security-advisories.html"
},
{
"category": "external",
"summary": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6",
"url": "https://github.com/fastify/fast-uri/security/advisories/GHSA-q3j6-qgpj-74h6"
}
],
"release_date": "2026-05-04T19:31:57.253000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
}
],
"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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "fast-uri: fast-uri: Path traversal vulnerability allows bypass of security policies"
},
{
"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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2428412"
}
],
"notes": [
{
"category": "description",
"text": "A cross site scripting flaw has been discovered in the npm react-router and @remix-run/router packages. React Router (and Remix v1/v2) SPA open navigation redirects originating from loaders or actions in Framework Mode, Data Mode, or the unstable RSC modes can result in unsafe URLs causing unintended javascript execution on the client. This is only an issue if you are creating redirect paths from untrusted content or via an open redirect.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-22029"
},
{
"category": "external",
"summary": "RHBZ#2428412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2428412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-22029",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-22029"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-22029"
},
{
"category": "external",
"summary": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx",
"url": "https://github.com/remix-run/react-router/security/advisories/GHSA-2w69-qvjg-hvjx"
}
],
"release_date": "2026-01-10T02:42:32.736000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "@remix-run/router: react-router: React Router vulnerable to XSS via Open Redirects"
},
{
"cve": "CVE-2026-25128",
"cwe": {
"id": "CWE-248",
"name": "Uncaught Exception"
},
"discovery_date": "2026-01-30T16:01:27.320561+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2435497"
}
],
"notes": [
{
"category": "description",
"text": "A denial of service flaw has been discovered in the fast-xml-parser npm library. In fast-xml-parser, a RangeError vulnerability exists in the numeric entity processing of fast-xml-parser when parsing XML with out-of-range entity code points (e.g., `\u0026#9999999;` or `\u0026#xFFFFFF;`). This causes the parser to throw an uncaught exception, crashing any application that processes untrusted XML input.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "fast-xml-parser: fast-xml-parser has RangeError DoS Numeric Entities Bug",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The availability impact of this flaw is limited to the application which bundles the fast-xml-parser library. Red Hat host systems are not at risk of availability impact.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25128"
},
{
"category": "external",
"summary": "RHBZ#2435497",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2435497"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25128",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25128"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25128",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25128"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/4e387f61c4a5cef792f6a2f42467013290bf95dc",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/commit/4e387f61c4a5cef792f6a2f42467013290bf95dc"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/releases/tag/v5.3.4",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/releases/tag/v5.3.4"
},
{
"category": "external",
"summary": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-37qj-frw5-hhjh",
"url": "https://github.com/NaturalIntelligence/fast-xml-parser/security/advisories/GHSA-37qj-frw5-hhjh"
}
],
"release_date": "2026-01-30T15:14:58.244000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"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:L",
"version": "3.1"
},
"products": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "fast-xml-parser: fast-xml-parser has RangeError DoS Numeric Entities Bug"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"known_not_affected": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_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-16T17:21:21+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://docs.redhat.com/en/documentation/red_hat_openshift_data_foundation/4.18/html/updating_openshift_data_foundation/updating-ocs-to-odf_rhodf",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26420"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_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 Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-operator-bundle@sha256:91088d98fb787c421767d43c917aba66f2fb7b5e1e4493f9e1b71776b91c6063_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:255ed925fd638caf248ca62723e4a77db96981a39d549a6bd0d415ca10a72354_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0103be1bffa6ea5eb14dbe4205cf263dd2287acda170dbcb1a0031cd9675114_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c0ec45fb9c604bcd8cb91d642073953f9c809ac30d497f00b34bc65656e87e7f_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9-operator@sha256:c1fa14ae91d65fc11c82b69a2f9541d21a745d44efd24c604e6a27d04957f68d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:8b5095bbd2ef111017c383396a78c5e2011e6f1acc89f3e25cc5c513da3fa39d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:bb0f2f7cc5d8b8f3891e84dd1edca994116f49e2c3d5846f3a27459b65350c81_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/cephcsi-rhel9@sha256:f65e82acbbcfb3cb4a640956351fe05cae2ecf457bf6af6ea18201a8ee6147b4_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d1fd81d29813df14d5f594ea1be3db86ac431a318c1705258ff77c03b0194b39_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:d9affb0ef99ebe62a9dd9419a2c63ffedd041b3767f60b9a7ae277da1e85142a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-core-rhel9@sha256:ee8b2fbccb80578ffc877b81b3d596a9f31ac858c4ad285bd31fe91c6358bc61_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-operator-bundle@sha256:dedcfccdebb5c0a393d4a64d7a9af23f57dd54d2cf616da32f612a29d4ded84f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:77162e7abaaecaa794c9854f1f4a1156525db5c53d5ae2552d0381011d4698ed_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:bdf017a7babddfc112476c895098a379daa882faa1b9f143338e4e2bdae73b94_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:c7cc52b4278d0e11c2b59b5a0918181b5051ebbbf72778c06f187a53f50c0d3d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/mcg-rhel9-operator@sha256:e011f249bc755bb4214fb489d18252d274948e308d58189fc58ddb0e6b033e85_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:ca1c46e5ba9e0ce052d7a1c0be6f891178ec67f305f1f2bcca98c0121ef91371_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:d2ee226f8955c3999718a52941b36b41ee9b0d9d9fceb61aac240bfc5f9f3901_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:f8299774ae3e8f77b4e3f08508054e2f34f57afe6e48d4c504531c6e9c905f11_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-operator-bundle@sha256:b5a1106102a10bd7ac49b4f3237b7d351a0ac820c8f7769f0aeff414f184bc9e_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3c0b4864ce9505ae78ef08cb2e8e2125a8d4550553df687782656683bffcfb6b_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:65b2fffafa34a4d08697e5262936920d8344bacabbc924256a9c7d4817864096_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:99835488a1b30b768ff4302835afb491c81587d5dbf4532376341d17204ea20a_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:a1829d559de88f980816f31db2477ba0606f28efee783bc9093db4e542064f76_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:29f4a222472c130d69c777d059f864cb1e3af7af5217c1ecd39df3ff80993318_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:3789a6546488cc07e27834ad97ed8c0c68e0a0186025b6c6ba7041e63586ada3_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:bf27789a13be939d1a4dbe150c460777adf2e147eec3fa6894868f2a660294b1_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-operator-bundle@sha256:ef92f86e98e2892ae769dc65fedc87a155efe3e8ea4ec5cb32712d2450fa652f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:1dd7e077f3e77c10ab0433016e710dbaa261b4a17374c8e1c8c690fe439e1dbd_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:4dd15f7864d908e95c762eea03ea94bdc4db21e3e345b9e23d9207f59993d8f1_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7118d485c6ffb230cf8645b0e864390273586b132fe9b6b768fb1a95c1f40e65_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/ocs-rhel9-operator@sha256:aa064dd10df433deacdd9b3f978570122ef2c759d47dd53442ea2cebd1937aed_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:4cb6b2d94262a393198407aab5f9ce909fa019573bdefcce06c9cd69bcf16f17_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:779a59493ccd6ffeaef1d754e45a17c2a2af4ce00cfcdcb84b301fffea4e8718_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:aba0e8fa7b1ebcfeb272943aaf4c6bcce9b0979b9e94663c263a0b4189c30814_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cli-rhel9@sha256:fa89c532e965815371022ba13076249feae5f4ea1326fb870714272af6a76884_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:90208fab0843412d56e36665816ddfcd2e580102e8bf838f6843ac1c8de8073f_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:b5284d194e662307948b8ef55155d5379c3fae819ed72c627ff83ce62ba775d9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-console-rhel9@sha256:f67d4a84c1a773375aa68e606cf8cc1bc5d684fcb12657d213c449d865638f2a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:2a62bdad7ad45e136417af820f20711e99eb2dc338365dd1d4ba55a7e420685c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:942a41754d5aab985f16ec7855cca137bcfe42b445cf007f7b8daffb2d82ad58_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-cosi-sidecar-rhel9@sha256:ebc1e00884a084fe6f5aacb85708f25cb782ac46d4be310265f65024f3405a40_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-operator-bundle@sha256:a4a30fd506f6eb4be001761639d401f5d64e749d723bd12420c2f32a6a6d7cfe_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:1020f38bcc25895ea55ae9d555f8df2f0919282c1142a516a899771bf6b6d40f_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:3c61ce58c1b13999da1b6209d9e49bd0ffd03a4d3709dc6f734e30e20da8f470_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:50221b0398535c8b4f1d425a142fd15582d6a8b2561dce5ff4aab0a729cbaa46_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-rhel9-operator@sha256:cb15ca7512bf2bbde43752091e9c4b489fcd17ea46dc712e01e2039dba18fb51_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:1859fb91aabfbe3657a67f927c88f513a32fc4e6d677e9822da742ff1e2eae74_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:be4c47c665750a2604849e36843b39e5c8fdda1816a1a8ecf718f41a932dd8c4_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:bfd29ea0454d15e309d46506b682d794b8100c27d2a2dd9c541f5f19b6650503_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9@sha256:de7b3a45db874dcb159f85b2aa942565b0446efaf444ac06b96586f65d99bf33_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-dependencies-operator-bundle@sha256:786c1c7cd4e32f27e1965401cfb4b9b2e4cfd5395f00d113b85744ff09e7d670_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:1dd764893289d8eec94f270a240d3b9f830dbe2bb1983a75a9b02769c06d0583_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:2bcb71635687b0f869a331eb861d14d725025de785d6e10e74c8ef094a0832c6_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-console-rhel9@sha256:a2b4f1987a0ab47400c6349c1dcfdb1ba5ba6b4f665f6810400d57f928fcdc05_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-operator-bundle@sha256:7842cafda678d29dea19c8aa0bc4cba9bd625618ad46a84147315d1ca2df322a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:1ad55e3f77993e19989df949a9f3a6e067f655a1aaadeac100c89a271eba7cd1_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:3845f5c32667bd909d63516a045bb345e0a3e654f7207f950c101b40691a6817_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:758a5a2d5fb6d75bf402351c040091afa02db89deb792d61d070d6b58ae7d03a_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-multicluster-rhel9-operator@sha256:e4c66d8c0e3bd42c2c205cbba3f9a4933e348dfecdd692471fd929f088ae04d6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:15b1929d8c43dbd4162a4c6704fddaa2b95ff52abda18ddc5824eb0193c79981_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:259ad6da433caa60540d60a378dd012e72a7565cba2546b65b7637ea825cc1c9_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:3108a42aced23db79a08b1056bbe72b4e9a58f01179e22d42865dfdcf302abe6_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-must-gather-rhel9@sha256:66756cfecfb6bdece1f0821d177178a610f4f99b8de674556c1888d1c824dec2_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-operator-bundle@sha256:5e8d225c4b61a5f7f47b8e73f109d112aaccaaf444d5c645ac758a21e5ed8464_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-prometheus-operator-bundle@sha256:673c98445faf511c56402f192504e1eb02c2a3b469b8c7240537828e5ebb937d_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:1712a8afcdeb553b4d95b672d2a742b578514752b55a82e89d531f138cdee9f0_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:41d526e9d8838d4fd1bcef9c162e89b6a09fa1e0e74a1ed7c3fe40791d7cf1ce_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:4f30f9e41faec93f7b823e2b2299eaeae50cbfe7bf03b8537bde7b7e237bb529_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odf-rhel9-operator@sha256:dbfefa0ce136e948fef813ed9e9c85dbe02ca634d86d8803930a34944b76036c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-cluster-operator-bundle@sha256:0632a224a41634eb0c30db6a68a70dc1e2061a86b97c0a8beaaa5efe96ff8a5c_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-hub-operator-bundle@sha256:30827fb64f28f2e24629c3e09b46546edafa3faf36a2aa6adfa5514de09e90e6_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-recipe-operator-bundle@sha256:6b13ff40c8e9b4c9eaf132db455f87bcd00dd2e7a18a9138569ea4b23788bedd_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:3e79eea4c768c76a072427d19a76c91e4e7c891e96451d9664d65a8b23bf5405_ppc64le",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:4e167287dd1d83bb62de2bce5c0347a30fd52c0527fd542598680b9540a9aa1a_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:64f217f1f95c515e1b0c8b6cedd3f18291bd53dbe149464bbb207450bd3e83ee_arm64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/odr-rhel9-operator@sha256:ca804f0d5ee3c2ed86a897522f0d7e13bfbac1a6f94edcf41d8dfe918b6e0972_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-operator-bundle@sha256:af11073ba5ab028c2296988bbacbad4cff2673d687c57b97145f0bd35257c7ae_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:850dab567562ae9f00d996b29753ebd32915c76cd1aa9f639acfb6284e4e4a86_s390x",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:ccd849ba93d90a8a933d62667ee9c53e6846027a86fba50498e4121cee790b72_amd64",
"Red Hat Openshift Data Foundation 4.18:registry.redhat.io/odf4/rook-ceph-rhel9-operator@sha256:cd71ba8f05635f70654d7f0ed9a0549d85028df86315a4e975a01c2647c41de2_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:26519
Vulnerability from csaf_redhat - Published: 2026-06-17 06:49 - Updated: 2026-06-29 17:50A flaw was found in golang.org/x/net/http2. A remote attacker can exploit this vulnerability by sending specially crafted HTTP/2 frames, which are data packets used in the HTTP/2 protocol. Due to a missing check for null values, processing these specific frames (types 0x0a through 0x0f) can cause the server to crash. This leads to a Denial of Service (DoS) condition, making the affected server unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64 | — |
Workaround
|
A flaw was found in github.com/jackc/pgx, a PostgreSQL driver for Go. This memory-safety vulnerability could allow an attacker to cause various impacts, such as denial of service (DoS) or potentially arbitrary code execution, by exploiting memory corruption issues. The exact method of exploitation and specific consequences would depend on the nature of the memory corruption.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64 | — |
Workaround
|
A flaw was found in Tekton Pipelines, a system for declaring continuous integration/continuous delivery (CI/CD) pipelines. An authenticated user, able to submit `ResolutionRequest` objects, can exploit a vulnerability by injecting malicious commands into the git resolver's revision parameter. This allows for the execution of unauthorized programs on the resolver pod. Successful exploitation can lead to the exfiltration of all cluster-wide secrets, resulting in significant information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "The 1.21.2 GA release of Red Hat OpenShift Pipelines Operator..\nFor more details see [product documentation](https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines).",
"title": "Topic"
},
{
"category": "general",
"text": "The 1.21.2 release of Red Hat OpenShift Pipelines Operator.",
"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:26519",
"url": "https://access.redhat.com/errata/RHSA-2026:26519"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27141",
"url": "https://access.redhat.com/security/cve/CVE-2026-27141"
},
{
"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-33816",
"url": "https://access.redhat.com/security/cve/CVE-2026-33816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40938",
"url": "https://access.redhat.com/security/cve/CVE-2026-40938"
},
{
"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_pipelines",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26519.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Pipelines Release 1.21.2",
"tracking": {
"current_release_date": "2026-06-29T17:50:58+00:00",
"generator": {
"date": "2026-06-29T17:50:58+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26519",
"initial_release_date": "2026-06-17T06:49:10+00:00",
"revision_history": [
{
"date": "2026-06-17T06:49:10+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T06:49:24+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:50:58+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Pipelines 1.21",
"product": {
"name": "Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_pipelines:1.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Pipelines"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3Afdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1780512811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-pf5-rhel9@sha256%3A6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9\u0026tag=1780991861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3Aee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1780724204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3A785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1780724268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3A4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1780572821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3Af30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3A246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1780645016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3Aad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3A6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1781067439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3A42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1781067498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3A652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1781067497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3A7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1781067432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1780575969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3A5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1780402306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3Add5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1780366737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3Ab289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1780922870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-git-init-rhel9@sha256%3A77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9\u0026tag=1780567490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3A1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1780633099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3Af2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1780633024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3A880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1780633047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3A632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1780984164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3A3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1780983852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3A10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1780983714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3Ae32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1780984035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3Af929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1780984057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3A4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1780983724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3Abd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1780984221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3Ad97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1780984646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3A48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1780720784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3Ac71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1780720920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3Acb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1780641574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3Afd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1780641638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3Af80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1780641637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3Ac036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1780575285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3Ae7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1780575283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3A7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1780575272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9?arch=arm64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1780575209"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3A9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1780512811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-pf5-rhel9@sha256%3Aff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9\u0026tag=1780991861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3A0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1780724204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3A1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1780724268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3A0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1780572821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3A3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3Ad3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1780645016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3Abfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3A67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1781067439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3Adc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1781067498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3Ad297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1781067497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3Add8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1781067432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3Afc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1780575969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3Ac728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1780402306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3A99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1780366737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3Aa395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1780922870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-git-init-rhel9@sha256%3Afa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9\u0026tag=1780567490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3A2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1780633099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3A017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1780633024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3Afef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1780633047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3Aa1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1780984164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3A82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1780983852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3Ade69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1780983714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3Ad671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1780984035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3A34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1780984057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3A1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1780983724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3Ae8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1780984221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3A8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1780984646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3Aaac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1780720784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3A74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1780720920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3A19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1780641574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3A91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1780641638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3Ac22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1780641637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3Ac7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1780575285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3A32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1780575283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3A61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1780575272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1780575209"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3A9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1780512811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-pf5-rhel9@sha256%3A9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9\u0026tag=1780991861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3A09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1780724204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3Adefe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1780724268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3Ae5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1780572821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3A73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3A230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1780645016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3A98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3A3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1781067439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3Abb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1781067498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3Ae35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1781067497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3Abcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1781067432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1780575969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3A3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1780402306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3A1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1780366737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3A8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1780922870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-git-init-rhel9@sha256%3Afff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9\u0026tag=1780567490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3Aac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1780633099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3A32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1780633024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3A7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1780633047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3A838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1780984164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3Ad54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1780983852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3A04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1780983714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3A4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1780984035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3A8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1780984057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3Acce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1780983724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3A323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1780984221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3A8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1780984646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3A5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1780720784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3A5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1780720920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3A447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1780641574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3A1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1780641638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3A26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1780641637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3A438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1780575285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3Ad51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1780575283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3Aec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1780575272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0?arch=s390x\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1780575209"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-rhel9@sha256%3A9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9\u0026tag=1780512811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-console-plugin-pf5-rhel9@sha256%3A51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9\u0026tag=1780991861"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-controller-rhel9@sha256%3Ae490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9\u0026tag=1780724204"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-manual-approval-gate-webhook-rhel9@sha256%3A4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9\u0026tag=1780724268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-opc-rhel9@sha256%3A1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9\u0026tag=1780572821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-rhel9-operator@sha256%3A0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-proxy-rhel9@sha256%3A6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9\u0026tag=1780645016"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-operator-webhook-rhel9@sha256%3Aaf5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9\u0026tag=1780645012"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-cli-rhel9@sha256%3A606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9\u0026tag=1781067439"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-controller-rhel9@sha256%3Aaf26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9\u0026tag=1781067498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-watcher-rhel9@sha256%3A5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9\u0026tag=1781067497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pipelines-as-code-webhook-rhel9@sha256%3A4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9\u0026tag=1781067432"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-serve-tkn-cli-rhel9@sha256%3A301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9\u0026tag=1780575969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cache-rhel9@sha256%3Ac26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9\u0026tag=1780402306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-chains-controller-rhel9@sha256%3A9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9\u0026tag=1780366737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-cli-tkn-rhel9@sha256%3A0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9\u0026tag=1780922870"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-git-init-rhel9@sha256%3A7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9\u0026tag=1780567490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-api-rhel9@sha256%3A1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9\u0026tag=1780633099"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-db-migration-rhel9@sha256%3A44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9\u0026tag=1780633024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-hub-ui-rhel9@sha256%3Ad4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9\u0026tag=1780633047"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-controller-rhel9@sha256%3Ae10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9\u0026tag=1780984164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-entrypoint-rhel9@sha256%3A34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9\u0026tag=1780983852"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-events-rhel9@sha256%3A12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel9\u0026tag=1780983714"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-nop-rhel9@sha256%3Ac7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9\u0026tag=1780984035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-resolvers-rhel9@sha256%3Aaf942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9\u0026tag=1780984057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-sidecarlogresults-rhel9@sha256%3A17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9\u0026tag=1780983724"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-webhook-rhel9@sha256%3Aabfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9\u0026tag=1780984221"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-workingdirinit-rhel9@sha256%3Adae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9\u0026tag=1780984646"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-controller-rhel9@sha256%3Ae43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9\u0026tag=1780720784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-pruner-webhook-rhel9@sha256%3A04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9\u0026tag=1780720920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-api-rhel9@sha256%3Ac01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9\u0026tag=1780641574"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-retention-policy-agent-rhel9@sha256%3Abdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9\u0026tag=1780641638"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-results-watcher-rhel9@sha256%3Aeba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9\u0026tag=1780641637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-controller-rhel9@sha256%3A9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9\u0026tag=1780575285"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel9@sha256%3A47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9\u0026tag=1780575283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel9@sha256%3A06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9\u0026tag=1780575272"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"product": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"product_id": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"product_identification_helper": {
"purl": "pkg:oci/pipelines-triggers-webhook-rhel9@sha256%3A25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536?arch=amd64\u0026repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9\u0026tag=1780575209"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
},
"product_reference": "registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-27141",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-02-26T20:09:11.626155+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443104"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang.org/x/net/http2. A remote attacker can exploit this vulnerability by sending specially crafted HTTP/2 frames, which are data packets used in the HTTP/2 protocol. Due to a missing check for null values, processing these specific frames (types 0x0a through 0x0f) can cause the server to crash. This leads to a Denial of Service (DoS) condition, making the affected server unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/net/http2: golang.org/x/net/http2: Denial of Service due to malformed HTTP/2 frames",
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27141"
},
{
"category": "external",
"summary": "RHBZ#2443104",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443104"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27141",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27141"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27141",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27141"
},
{
"category": "external",
"summary": "https://go.dev/cl/746180",
"url": "https://go.dev/cl/746180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77652",
"url": "https://go.dev/issue/77652"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4559",
"url": "https://pkg.go.dev/vuln/GO-2026-4559"
}
],
"release_date": "2026-02-26T18:50:31.830000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T06:49:10+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26519"
},
{
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"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:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang.org/x/net/http2: golang.org/x/net/http2: Denial of Service due to malformed HTTP/2 frames"
},
{
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_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-17T06:49:10+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26519"
},
{
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_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-33816",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-04-07T16:01:14.142946+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455972"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/jackc/pgx, a PostgreSQL driver for Go. This memory-safety vulnerability could allow an attacker to cause various impacts, such as denial of service (DoS) or potentially arbitrary code execution, by exploiting memory corruption issues. The exact method of exploitation and specific consequences would depend on the nature of the memory corruption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33816"
},
{
"category": "external",
"summary": "RHBZ#2455972",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455972"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33816",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33816"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4772",
"url": "https://pkg.go.dev/vuln/GO-2026-4772"
}
],
"release_date": "2026-04-07T15:19:24.529000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T06:49:10+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26519"
},
{
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability"
},
{
"cve": "CVE-2026-40938",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-21T21:02:16.557479+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460292"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, a system for declaring continuous integration/continuous delivery (CI/CD) pipelines. An authenticated user, able to submit `ResolutionRequest` objects, can exploit a vulnerability by injecting malicious commands into the git resolver\u0027s revision parameter. This allows for the execution of unauthorized programs on the resolver pod. Successful exploitation can lead to the exfiltration of all cluster-wide secrets, resulting in significant information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/tektoncd/pipeline: Tekton Pipelines: Arbitrary code execution and secret exfiltration via malicious git commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Important flaw in Tekton Pipelines allows an authenticated user to achieve arbitrary code execution on the resolver pod by injecting malicious commands into the git resolver\u0027s revision parameter. This vulnerability happens because the `revision` parameter is passed as a positional argument to the `git fetch` command without any previous validation whether the parameter\u0027s value doesn\u0027t start with `-` character. Combining this lack of validation with the fact the function which validates the repository URL explicitly allows a repository URL to being with `/`, translating to a local filesystem. An attacker with enough privileges to perform an operation which trigger resolvers to use the `ResolutionRequest` function can \nchain both behaviors to trick Tekton Pipelines to load and execute an arbitrary binary on the resolver pod.\n\nExploring this vulnerability may be considered of a high complexity as an attacker needs to either know an existing valid git repository located at a predicable path already in the resolver pod or a default URL configuration pointing to a local filesystem\u0027s path.\n \nA successful exploitation of the flaw can lead to the exfiltration of all cluster-wide secrets, posing a significant risk to the integrity and confidentiality of the OpenShift environment. Additionally, depending on the data included in the `kubeconfig` files, an attacker may achieve privilege escalation or perform lateral movements within the targeted cluster.",
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40938"
},
{
"category": "external",
"summary": "RHBZ#2460292",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460292"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40938",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40938"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40938",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40938"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/releases/tag/v1.11.1",
"url": "https://github.com/tektoncd/pipeline/releases/tag/v1.11.1"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-94jr-7pqp-xhcq",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-94jr-7pqp-xhcq"
}
],
"release_date": "2026-04-21T20:45:24.658000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T06:49:10+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26519"
},
{
"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 Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:3c4587b2b5dc7426cc24e8678dd103ed2b1abb8ca13f5ea5aab606d92e5e00ba_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:5330de373490f5bfd8fa40de3c8dfb21f64128dab695aaff3a6a4c96c3388d3b_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c26593f4740103d3296bb094cf30af778128384617d0ac5b7ecef9987a88003a_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cache-rhel9@sha256:c728d376aafac1219d957bafe2f3ab75ae88e1d326d48ca409e209e09a782e6c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:1cd66608b31afb07d5575714fd24becb2a3eb48fd6f897240986e5b5cd5ca25f_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:99aab6998dc6e4c8349a53e4ab52c0a9730aa75b36bb4e87d74bb6ee5f2044da_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:9d7a69223b0662bcf109a02007d017e5f10e5c563ff78c02d87af8d5d4ea24de_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel9@sha256:dd5328245120eb981cf5fe6153fc2d33ed9817612884bb7cf7fed77782cd1e20_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:0b3a5aa6d681f46fc242eefae9a3540b43c2be17b643d40ca4446cd0e8fc2abb_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:8627d0dd68402dc51137d89534c0bdb72e27fc3327be1e63e93a38ae72f653cd_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:a395182a2cda20322f0af7ecc972ab3bc9c07161e70174c2b4d9ac08f6aa9845_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel9@sha256:b289110701914022840061f5f5a931e5c895d16898fff3d78193b89c37943201_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:51d8398c7057486fbc41a810031276ccd05179d43e9cf4369c8df440495c6ef7_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:6aaf557a08c0952e2ec7463e3b3cef4d5f8fc9d24427a28c9766f6f0d12f08bd_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:9f9b88b0fbc438aad06752a21fe76a870ba4d8042c6ee1ff0505af780ca8c2f0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-pf5-rhel9@sha256:ff4f49f5218d296b3af828c17283f870aebd6d60813563b55908ffd4629eeab1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9e75f7392dcc9df58236d14c8c56e69b34564525b72862d851bea16367270128_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9f80cfe35f04cbe6a16069c1ec1d8811be4d593e64e4c416f3c10d0867e6ae19_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:9fabbf4a7e28f6ab02f1ac77b82fc37e0e295f71b05fa9e56b1a5ee4056a0fed_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-console-plugin-rhel9@sha256:fdebb108386237b2ceb1a09abfd18a26fa724dfeb288b8db05a324c4534b109a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:632a9d70719cce5d0fde98642ff48e6e810072173dd73db3792f6f80d5272fa7_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:838ee5faa3da19a38b8df19373dc4019f7b80ffdb71053e4f74d53a447a48eca_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:a1477ff3ddb9315e482647d228c09e55356d00291f9fde419d36e064b54fc6b8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-controller-rhel9@sha256:e10748a721cdb9316cc4283549a800b7725268ba3e181945329c76350ab7b32d_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:34cde8028262bd635134993a4d95bbc63a38dc943862938955c2eda609a67f71_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:3ef24dc7c5588180203520784ea3db6e1501e5190b3f59aa1f77df1a5bee9bfc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:82192c8ede01ce878231c9c56d7104d845e6bb69a8eeea17af84be7b56654eea_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel9@sha256:d54076093c47f3d5576eb0a5c1e4cd7963a9d29f393a277721c8f34cb7efc263_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:04ddf503b9da7491acec12879894486790a2d2baf3256837ae5884eb73e91bce_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:10ec14b028d3926a2c0ba35810035e69d669c0e358ed8832d854f0454c77e516_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:12ee577bf514a68c17d1b5ad73b91365c3f242bd82edee45422326ba2e0c0b65_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-events-rhel9@sha256:de69bc0e11397002240253365aa2b2338b401e7aa4f74478e5f202184662a235_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:77751c116d7b990d00fe24beb6a3d5bc7faedd5f628b379903384e9c8ddb2c7c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:7e4262c5ce1b614df5a3575111aa8d1f047ad476660b25e6318b562275626c51_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fa74f6dc71dd03e23612312e6c6e988ff1234a8e75752087abb980ca983fdac2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel9@sha256:fff455cdc1c5015bad5296c85a6a13b2b4593b57dbf78164c1328cea9b228601_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1364a6b06e13e205088d8690ae753c99527fc130cd5d8ece02fd92538f522a1d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:1509f4cd6e5aaeed58bd8d2fc518183a6943d546d1cf969fddaec4c075051001_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:2a767fe742df781ebf07f553a7274e766b3dea1b8f12ea665d5ef19efccdcb1e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel9@sha256:ac3242268defa432b3245eeebaff125bbdbcfec532f5d25d7e96d81f0b4482c9_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:017afc8d42f2f0dd7adaf151c0cb79200724994d92e1b5e2f0c2461a9d7a75e0_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:32d4c74e6dad2e47b4129320cfd7c2c69fbdad29dbe3822749a98c023bce5be2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:44d851608309de07e95081a748aa6b0ae1fde09fa8524ac9723aa9c0ea956785_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel9@sha256:f2659636edc0651da9d6bc18a09df3ddc94b80143ba4818dd9f818840c776d60_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:7cf7b1d6ec5e436fc35eb92ade0e29316b5af4c6a0df3b3cc0ade5fc732631bf_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:880ca9bd23984cde3a928c7266cd89051ca8bb95b94be54dfbe1e5330ff89674_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:d4bf6a34a799554347bcca84210428262288b32e8d340926f1100a4c05edf4a4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel9@sha256:fef0a1823440a06135a3d77afe86367c0f969cace70ac39b9fd1f188a80e69f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:0521f90dec2a5a5cd930b3e3bf0de90b066eb1b2b2e74e82c9d63d3512b3e6c2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:09ec7273c5e72adfc183c3af125e2cd47bc1ddb7c44c28aeae18ee488844348c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:e490cc741517a709f420720b8ee9d9a5ee5335675caa6e967a45b1be0b1404b4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9@sha256:ee97bfec045744082cb9a2c806fb8808a25bb5014ee9568ff22e12803f03f26d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:1a9beb7528ea2ac15e1257be1ff0c8b1ecd4d2e103792efcb5408b0de77fce32_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:4104ea287b8e2476ed618e6e16a35658dddf4ec1da5b58d3196cd68f03fc8989_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:785a7d536bcd955878d80b28a9c5f2d3fbc73cc1ec76dcdbdaacd5454365cea8_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9@sha256:defe86d856b97f76f8b1455f61c865cf0dbac67810cb67ea5eada820a2f948e6_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:4333b9d650627bb913456e6504faaaf0f0efb55e40a95546c3d31d08d8e2b076_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:c7bd2ccc85720656c78d2808a9059e50457ff6a74fc8a00fcce1b05e193c7244_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:d671e8634526c2e661713be807e2e7f32e46e58dbf7eea44e43ee17a87db601d_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-nop-rhel9@sha256:e32b399bba77a431ffc4e8f24744a790b7aab19f061f7ecca929cb795c83c4d0_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:0ff3decd7dfc8d54779ad65d693327c810f0094200aa34079d929039773887c3_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:1767e287d7463f0d9b6c3af65f98699746835e2c44af4a0b5398139be2aefd23_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:4a0c4d9dc31805b56a417b2359f5da2adaafced10dacf2110bda3d99c73184fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-opc-rhel9@sha256:e5abf59262ae41f04385437e3f95924eb505eaf936f5a988319b5a6a52f708c2_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:230119ab73baf69b572857a4b923baf2e267d2d77f8d373d924db1eb832d9a08_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:246f462c19203a5c3c28277bc857e38d9f5b648c4e3b6b77c35c0162e5c95d1a_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:6de3add0818fe352c79cdc4c53c792fcd4150e07908a9dae274e1a7b34d7e545_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel9@sha256:d3c4701a2aeac9cd836962c6c5d999a0aabb0c472c57fa4fe105e0c1a099059c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:98c3af814cc1d5a34f33cfeeeba1f7940f8e30e306da9487dca475bd31938fac_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:ad47d4bd6e23f0661b826a0f7c826a791474f4a9e15db453d941d143cb42c90c_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:af5002abc824cf36f90e16bc715ae619c035905442c0801cc92031a6a7765576_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel9@sha256:bfcc99ea9f1c699b48dcf2994afdd8a68f031f794d721ae745de54a924e59c76_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:3390ca1fd9ae0602c829961dc332c7e3c417020c18c50a08cefdb90c621d6474_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:606e8a370de720153a1dced87cacf1caa1549e6ef8ceaccfe1062663fd18a493_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:67cc277bedd68e09d92c3c256e886ca2506636dfcd77625a5ea3db4005b5d586_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9@sha256:6e1b97632dea6ef859141e933ca2370d8fc90ab60f66a810e79290116d36d58d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:42e1a906ab4a97af8537be7b433ac2c7d2b9240d4a42ca9bc65ebf8af78fd7fc_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:af26c01c9129a5f2fbe128d2fe7fe25fb03c0ee6cd76571155147cd4ea3c2de1_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:bb2e059a922f8ece5011db593873c8839d1951ceee09d50fff1613ab270e1062_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9@sha256:dc1a40ceab9f4100575ac0348a5e17514312d1dabfdb096130093914ff329059_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:5172c4fce21f42b27a34e3f7997e193107e0c0acc680b76058a2f099bf7141b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:652771b15fc2b567ef2003d737397364c47bc641eb8bee217cf908679721c7ea_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:d297745a65c828d0a32ca68198e796a37fdef153bfb040cecb9739a868899777_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9@sha256:e35424513c27c433a94b68d573ab05027fd8b63494414c68ea07a3f3efa01345_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:4c0c8bc122d612b3c0e228e1c5573fad021c4546496c45fbc2a2dc4225fbe727_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:7d4436578b21ba00a60f5cf6bd74988f976f6c167475cc76f39b34b20da182df_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:bcf6c5a3baaa23bb19a487126003eb8f2194f9238cbe8170c5d34930d47cc36c_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-webhook-rhel9@sha256:dd8c287009c850126d2b4ae5623420c2ccde38bf14c9c853bdbe5c2e1586db06_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:48fd8e0d453e54ed7531678b05b65e388c00daae63ac5745c9ee8924f7c40371_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:5ad699e6e0061b76f3f50424cb557bcb9fc9569d48f76973da683a45b6ec9147_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:aac030d920f635b8ad7edf6cf046047c82f064bcb081e6071b86e8ee7d84464e_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-controller-rhel9@sha256:e43f01110886845433f023331f62328b116c20d404e70197fb70eac1df7ba155_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:04633a6772144e0362a5d059a21684026d8e78a28c2463c65daade75f3477548_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:5251d3f63d49ff224ca777898f93a5fdd6de407db59a315aefdfc49963f98c32_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:74f1f26bdb3c05af324066ce828f0863c2c5156e949c6cbeedd0d66068847033_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-pruner-webhook-rhel9@sha256:c71c29bc335b77b98419e90f24a0396a1093edc2d985aae48f5000f9de75941f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:34af5e7e166ea2ac902d3d0414adfb8442859396e60b4992de59d7ee130b3fef_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:8bfe1d490a44c6d495c7d30ddb4245746a2e48f0f72343574b3235fa3526cc6d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:af942926936e39d0f7a3ef1ed1af7fb97aaa04fee8a4ad4e6e21e8931ef42809_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel9@sha256:f929464036bfd53938a4cd7cd39297801a122fd20461cdce31cf8d6d96a3bb86_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:19425135838ddcea73db774c7dfa8a8a9f1301fb1bd488dd662cb02f3d7be670_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:447c983d4e104c79e59492ff5aebc62feccca29d08d11a8856c46710e3cb14fe_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:c01da1031a93870d3aabfd644585c88a53ab3cff759067b54ef08f3ebd690cf3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel9@sha256:cb3fb52bf47fe049263cd6f87ecfe9f1941fc9f7f4fe69385415cdbc9017aa5e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:1d18b01daba0807067ff5642305147ee613a22232a0a6ef88601243d59801f8d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:91e904d51d7505f19e7db68574a957febcb1963bad2f4452e9723be1bd5a79ce_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:bdf506a2c20720048d32e2f1a7df58a0e53f1df827611627d53c49cc005157b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-retention-policy-agent-rhel9@sha256:fd318fe6bac9e3f6fb87fa8773d96803e44ba82d5367438f26b1aa04744d60c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:26cd2ddeea2e3de5552a95537b4acbfb546076e4d6673b6a68f4c9e2b8dc0142_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:c22c8d4a9dfd25462ed4b37b20d3917cdc87bdc4a90718835dd7cfd70ac7eef8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:eba4d1b2d03ad132af50bb12a3e67633234494a62a458fd05fa645696f6215cd_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel9@sha256:f80821688e548ecf8b8ffd8ef6c4c5f3bc04f32628e7f83a97c910f43ce3dbe2_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:0739254d745378452259e4d9a84ba9f6bd03e523bda40d9fadfd999812003421_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:3278f98d80e2626bf481811b03908d955019137b47bacbfc6894949e067f39b1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:73959111c980def943d458774e2b86446e9cc5f96fa6f2d4b45b7db563f44d4b_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-rhel9-operator@sha256:f30b4949b3342a56ce37ab6368e3cd58d23581f8190b0652b1e2e6a4b9daed91_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:301d210efc58e5e08c62ce58e308298aa25f92743b261c258359b26231b179d4_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:491faee7ce303a18b80934ac246b965e9353764c9a9df3928af2757ef0c1104d_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:553e7ea4c082a871ded4daa0865bd2387ec6f99fc6fbd4713a27873cf5bc565d_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel9@sha256:fc03869cd583f8e31cf895f07ff7a96a9d7c236eab36b9e56136e58ca7db96bd_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:1262b507d141cb572339ea7dd149215af3ee891343a66c1d8436c4ef2c3e51ba_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:17db909660a9b940339d94e06e3b7f0612e0e306c6e877debded146505d274b0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:4fb24af422753d3194a182894499628b10c2fdf22c441b9a90ab9748d3138d7e_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-sidecarlogresults-rhel9@sha256:cce28f2d920fc8d3bfa1b6c64f4c58ec7b02eabaffa7fd05293b725030463bf5_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:438039b78b649983401a817b6937f95915088796a815f80b9625e19fab1a64c4_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:9d748d3f2c587649dbaf6c7f222aadf47ba4e744fab63a252d49ae1c9049e26c_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c036df7a4bc62e7bafe4b549f3e1fe17b6f9894ac4dedd6018df7d07e267b5a3_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel9@sha256:c7b9e3af430d26a1914bce5bf4189de1ebb3d61c4d8098b7b163c1b6d6f554f2_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:32376725b6ca30983e9fef1b1d6bfa51a7b1d7e1960ccb50bafccb15efe8c7ae_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:47dc50b7a92d96c2dadc980c97f5d58e6e3fcadf5a29c7736209e7e9a47a47c3_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:d51f2814147a117c3465dc38c3940df147092aebcd694e7453b2e4aadeb83ba0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel9@sha256:e7e8f68f0c3563ff5055685647d20e61a8811f07c828ed4ce88e5c0fa57577bb_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:06dcdd95fe32e4bfe8197f85a92e15e1b3266d195ecef3a3c11350c43e025b54_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:61d7da5e8a4fd131f49e7217c2a43ee60ee179ca8d74c1dd3b2a653e9864bc5c_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:7ddd248c4db55f65e82c0e6ceaa125876cc18cc6c4611a50f2bdb80809f02914_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9@sha256:ec3dffec1e3bbbd7381e45f888ee06fb080414fe9dc6935cd4caeff0a4e65636_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:0b0cc51d2f5df8a7cc2e30f80fcd4bdb7a38bd5f8a9ecc6d5e5870dc5fdc36e8_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:25933d9a51a2679fea10bda3d72addcadfe26a055a137c628bfdb5f818896536_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:290eacede3daa3be390b910c7116380a5a5dbc2ccc7c3ae8b562c67af76d3fd0_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel9@sha256:79799a8308a0b356a639bceca16c2a728f5bc78a88097fdd149173ef80d2c9c9_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:323921bcd7db381b2a1953764d5f85a14abcbdc1ccece894f8961d8b2b2fb779_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:abfc5c2b61eff272ef04d38a18b7bebaad8aac824a68fe0bd6a95e595678e2d0_amd64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:bd91a02760bac7f4e1f30753d7b9f29c9abcaeeaddde7e3c55c14ce827d07e52_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel9@sha256:e8c62219f6073bd08d585d5f159c6beab76e5553a7e8ae4d1e7c2bdb01c4c7c1_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8105660323b2250eee6ec111eb4aca20e7a88cdcd1b243ae9c6bc0bee8642293_ppc64le",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:8689c9c077663f3dbd393b9aa1ad5dfad6226c398070804b1e5f3afefaf2ec39_s390x",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:d97699f5c4083039de2cf17de20d4e93ac38bb10c885785705d4ce17bc80a37f_arm64",
"Red Hat OpenShift Pipelines 1.21:registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel9@sha256:dae5d2a9e6b12479f742d1110f20059acd9e831ea272a52525d9c3ee42d44d94_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/tektoncd/pipeline: Tekton Pipelines: Arbitrary code execution and secret exfiltration via malicious git commands"
}
]
}
RHSA-2026:26568
Vulnerability from csaf_redhat - Published: 2026-06-17 12:57 - Updated: 2026-06-29 19:34The 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: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
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: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Workaround
|
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
A flaw was found in BuildKit, a toolkit for converting source code to build artifacts. An untrusted BuildKit frontend can be leveraged to craft a malicious API message, allowing files to be written outside of the designated BuildKit state directory. This vulnerability, which is a form of arbitrary file write, could enable an attacker to execute unauthorized code or escalate their privileges on the system. This issue arises when custom BuildKit frontends are used with specific configuration options.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Workaround
|
A flaw was found in BuildKit. Insufficient validation of Git URL fragment subdirectory components may allow a remote attacker to access files outside the checked-out Git repository root. This access is limited to files on the same mounted filesystem. This vulnerability could lead to unauthorized information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — | ||
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
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: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 | — |
Workaround
|
|
| Unresolved product id: OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "A new version of OpenShift API for Data Protection (OADP) is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "OpenShift API for Data Protection (OADP) enables you to back up and restore\napplication resources, persistent volume data, and internal container\nimages to external backup storage. OADP enables both file system-based and\nsnapshot-based backups for persistent volumes.",
"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:26568",
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27137",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33747",
"url": "https://access.redhat.com/security/cve/CVE-2026-33747"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33748",
"url": "https://access.redhat.com/security/cve/CVE-2026-33748"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/openshift_container_platform/latest/html/backup_and_restore/oadp-application-backup-and-restore",
"url": "https://docs.redhat.com/en/documentation/openshift_container_platform/latest/html/backup_and_restore/oadp-application-backup-and-restore"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26568.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift API for Data Protection",
"tracking": {
"current_release_date": "2026-06-29T19:34:29+00:00",
"generator": {
"date": "2026-06-29T19:34:29+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26568",
"initial_release_date": "2026-06-17T12:57:45+00:00",
"revision_history": [
{
"date": "2026-06-17T12:57:45+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-17T12:57:47+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T19:34:29+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "OpenShift API for Data Protection 1.5",
"product": {
"name": "OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_api_data_protection:1.5::el9"
}
}
}
],
"category": "product_family",
"name": "OpenShift API for Data Protection"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"product_id": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-mustgather-rhel9@sha256%3Af0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel9\u0026tag=1779770057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"product_id": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-hypershift-velero-plugin-rhel9@sha256%3A5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9\u0026tag=1779244652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"product_id": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel9@sha256%3A31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9\u0026tag=1779244923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"product_id": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-non-admin-rhel9@sha256%3A5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-non-admin-rhel9\u0026tag=1779243495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"product_id": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-rhel9-operator@sha256%3A2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-rhel9-operator\u0026tag=1779843906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"product_id": "registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-operator-bundle@sha256%3A71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-operator-bundle\u0026tag=1779844974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"product_id": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-rhel9@sha256%3Ac9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-rhel9\u0026tag=1779808027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-rhel9@sha256%3A39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel9\u0026tag=1779245274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel9@sha256%3Ada0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9\u0026tag=1779244577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel9@sha256%3A7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9\u0026tag=1779244988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-legacy-aws-rhel9@sha256%3A765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9\u0026tag=1779244697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256%3A1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b?arch=amd64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9\u0026tag=1779243501"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"product_id": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-hypershift-velero-plugin-rhel9@sha256%3A04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9\u0026tag=1779244652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"product_id": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel9@sha256%3Acf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9\u0026tag=1779244923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"product_id": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-mustgather-rhel9@sha256%3A15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel9\u0026tag=1779770057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"product_id": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-non-admin-rhel9@sha256%3A1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-non-admin-rhel9\u0026tag=1779243495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"product_id": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-rhel9-operator@sha256%3Af1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-rhel9-operator\u0026tag=1779843906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64",
"product_id": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-rhel9@sha256%3Af05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-rhel9\u0026tag=1779808027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-rhel9@sha256%3A47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel9\u0026tag=1779245274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel9@sha256%3A7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9\u0026tag=1779244577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel9@sha256%3Ac1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9\u0026tag=1779244988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-legacy-aws-rhel9@sha256%3Ab3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9\u0026tag=1779244697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256%3A071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48?arch=arm64\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9\u0026tag=1779243501"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"product_id": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-hypershift-velero-plugin-rhel9@sha256%3Afda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9\u0026tag=1779244652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"product_id": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel9@sha256%3Ac7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9\u0026tag=1779244923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"product_id": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-mustgather-rhel9@sha256%3A99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel9\u0026tag=1779770057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"product_id": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-non-admin-rhel9@sha256%3A1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-non-admin-rhel9\u0026tag=1779243495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"product_id": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-rhel9-operator@sha256%3A4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-rhel9-operator\u0026tag=1779843906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"product_id": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-rhel9@sha256%3A99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-velero-rhel9\u0026tag=1779808027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-rhel9@sha256%3Abc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel9\u0026tag=1779245274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel9@sha256%3Ab3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9\u0026tag=1779244577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel9@sha256%3A7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9\u0026tag=1779244988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-legacy-aws-rhel9@sha256%3Aacb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9\u0026tag=1779244697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256%3A2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5?arch=s390x\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9\u0026tag=1779243501"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-hypershift-velero-plugin-rhel9@sha256%3A326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9\u0026tag=1779244652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel9@sha256%3Ad2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9\u0026tag=1779244923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-mustgather-rhel9@sha256%3Aac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel9\u0026tag=1779770057"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-non-admin-rhel9@sha256%3Affeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-non-admin-rhel9\u0026tag=1779243495"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-rhel9-operator@sha256%3A8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-rhel9-operator\u0026tag=1779843906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-rhel9@sha256%3A0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-velero-rhel9\u0026tag=1779808027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-rhel9@sha256%3Aa7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel9\u0026tag=1779245274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel9@sha256%3A3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9\u0026tag=1779244577"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel9@sha256%3A2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9\u0026tag=1779244988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-legacy-aws-rhel9@sha256%3A39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9\u0026tag=1779244697"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"product": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"product_id": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256%3Affaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16?arch=ppc64le\u0026repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9\u0026tag=1779243501"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64 as a component of OpenShift API for Data Protection 1.5",
"product_id": "OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
},
"product_reference": "registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64",
"relates_to_product_reference": "OpenShift API for Data Protection 1.5"
}
]
},
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Go standard library packages `crypto/x509` and `crypto/tls`. During the process of building a certificate chain, an attacker can provide a large number of intermediate certificates. This excessive input is not properly limited, leading to an uncontrolled amount of work being performed. This can result in a denial of service (DoS) condition, making the affected system or application unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "external",
"summary": "RHBZ#2456339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32280",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32280"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32280"
},
{
"category": "external",
"summary": "https://go.dev/cl/758320",
"url": "https://go.dev/cl/758320"
},
{
"category": "external",
"summary": "https://go.dev/issue/78282",
"url": "https://go.dev/issue/78282"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4947",
"url": "https://pkg.go.dev/vuln/GO-2026-4947"
}
],
"release_date": "2026-04-08T01:06:58.595000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
}
],
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
}
],
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_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-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33747",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-27T02:01:29.921765+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452076"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in BuildKit, a toolkit for converting source code to build artifacts. An untrusted BuildKit frontend can be leveraged to craft a malicious API message, allowing files to be written outside of the designated BuildKit state directory. This vulnerability, which is a form of arbitrary file write, could enable an attacker to execute unauthorized code or escalate their privileges on the system. This issue arises when custom BuildKit frontends are used with specific configuration options.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "BuildKit: github.com/moby/buildkit: BuildKit: Arbitrary file write and code execution via untrusted frontend",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33747"
},
{
"category": "external",
"summary": "RHBZ#2452076",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452076"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33747",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33747"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33747",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33747"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/releases/tag/v0.28.1",
"url": "https://github.com/moby/buildkit/releases/tag/v0.28.1"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/security/advisories/GHSA-4c29-8rgm-jvjj",
"url": "https://github.com/moby/buildkit/security/advisories/GHSA-4c29-8rgm-jvjj"
}
],
"release_date": "2026-03-27T00:49:06.165000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, avoid using untrusted BuildKit frontends. Restrict the use of custom BuildKit frontends to only those from verified and trusted sources. Do not specify untrusted frontends via `#syntax` or `--build-arg BUILDKIT_SYNTAX`.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "BuildKit: github.com/moby/buildkit: BuildKit: Arbitrary file write and code execution via untrusted frontend"
},
{
"cve": "CVE-2026-33748",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-27T15:02:00.107493+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452271"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in BuildKit. Insufficient validation of Git URL fragment subdirectory components may allow a remote attacker to access files outside the checked-out Git repository root. This access is limited to files on the same mounted filesystem. This vulnerability could lead to unauthorized information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/moby/buildkit: BuildKit: Unauthorized file access via Git URL fragment subdir components",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33748"
},
{
"category": "external",
"summary": "RHBZ#2452271",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452271"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33748",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33748"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33748",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33748"
},
{
"category": "external",
"summary": "https://docs.docker.com/build/concepts/context/#url-fragments",
"url": "https://docs.docker.com/build/concepts/context/#url-fragments"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/releases/tag/v0.28.1",
"url": "https://github.com/moby/buildkit/releases/tag/v0.28.1"
},
{
"category": "external",
"summary": "https://github.com/moby/buildkit/security/advisories/GHSA-4vrq-3vrq-g6gg",
"url": "https://github.com/moby/buildkit/security/advisories/GHSA-4vrq-3vrq-g6gg"
}
],
"release_date": "2026-03-27T14:00:21.200000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/moby/buildkit: BuildKit: Unauthorized file access via Git URL fragment subdir components"
},
{
"cve": "CVE-2026-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
],
"known_not_affected": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-17T12:57:45+00:00",
"details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.",
"product_ids": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26568"
},
{
"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": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:04cd0a20d0f47d97111301293bdded1eb3c4b303c9276e39f00b61af649ef77e_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:326e5c4f290916e99455d128911cdebcc2f476128004e4b4df1903a1a621a366_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:5cc12932887111178da936ab430e9f16b7f710a4ae98c7f1e8698720624b0b6d_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-hypershift-velero-plugin-rhel9@sha256:fda6c87a82490205e0cf97028fe6750e5407b677fb4d0a38d9d3b95e8af396d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:31bb587a13b02aeda8a55639f800020d68e6e91d1e37a0346bc0c09819254940_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:c7707d79297ad9e86a6061721ddbbab1ad389482d2c9e894268e1ef09a5311cf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:cf1a0fdd87815165d037d8361af27a7caa6ba4d2236767a649dfbc62090940a9_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel9@sha256:d2aa0a929a06d94eb17c23df9ba182ab0fa72c70cf67fc0144e4dfb3ea0c8e29_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:15a5dc9571818879988dfdc824ee63fdde8b1e7eb60ea3a6a80e0f8d7e35f07c_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:99ee1439b65c10715d8c68db82d34c940b35d49333e75206342c4071ac6b7ea9_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:ac6657db103d21fe3087af65ac5db65674808c076108e7e72d44f446a6c06fde_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-mustgather-rhel9@sha256:f0eeb401ff9af1cf1a1ec7f675af1b971d333b1b9a060f733583a0505ef755d6_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1011b71da5144aa87b41fad553e2595d37b0c00e84f3f9ef2fc5bc297c6c23b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:1ef599161ea817eaa39ae9122badc5947fcbfa734deecb1c508d64f381f52a3e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:5ce37061b7f2425eb90d2eabdb7d677213ce1a3ac70ef9388ded3d4d5ac0b745_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-non-admin-rhel9@sha256:ffeacd359cf277418e33a260740e4cb51e1ee2bf5e4cc9da70940099653e2115_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-operator-bundle@sha256:71d4d68dca0037032b54a9a0cb297ef5510f8527645e15fec482d38bef97c88b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:2c744015aa83e60af29a0f9afaf79b8989e30fbe0691b355a4934cbba8d875c7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:4f65efff92d7ca27642d56953725a881b0f5ec7c9e1e93665d071db125be6e99_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:8eacd52ce856b89c38ac209d4fc66bd8c3d196c54de6ad055edc1a8d39d9744c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-rhel9-operator@sha256:f1b973faeb4b97b79f94cb0d694f73bc90ba0d253fefadfd2b6c0a7994529ae4_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:3f7a2d92d75b52a54a9a75eb336bb0b4f31e1ad0e9f269f18ebad4975b9872c1_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:7fd8a157a73564f926e0ca1c5076745451a5b2746a93f0991bba14a0c29f6d14_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:b3aacb1ba2bc094bb4eee59348a9ff057c74944cbbf9fc9ab52d09d54c137a8b_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel9@sha256:da0495c5e76fec75eb6106b8926ab50b56fd6aa4171c008a16550c54aa32244e_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:2c490d9d3c4d176d8d8a396626525536cdd37236f9be86e73bb647cac9d07845_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7dbbe65df390d71e5af07b55c1768ccb716200a43e4af4a4c5613f538cf402ed_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:7f7f67f8c6975ffd963434a51078bc22588badff0dbbbc338b5d0245a48e5ccf_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel9@sha256:c1e17277ad0857c83172bdda7f1d4ac583f85021306aa366c1bc1ac47ecd4f1a_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:39c9533ab8147da38dc1da75c842bdd9605c27e44e5bd6958216eb6c090aa2bc_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:765383ad0e9e62368e91b9ac4945d3f253f5cb5329bb531d725f34306e6ecad7_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:acb1707f8ad2165040856ff90282264e42f013cfead52cb5e2740eb471b884fc_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-legacy-aws-rhel9@sha256:b3da6df1cc941e1d2044429f1361fd5b37b108a8c2bf672296c37ac31d561bd8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:071c8c18a00c2762d439d3021888a21a63f326e62fa229ac2cb5be664bf23c48_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:1718e9188458574e6c33c73165d30078075fec0751044ef19affe99358f2960b_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:2b96f4912ed60316e9e914cc01ee7fd5af2293e22108c571cf0663e120a2e7d5_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel9@sha256:ffaccfe0ee5b0acd0d1f1a07da6fec010c4ecbb6521df6852f22428b7f005c16_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:39d8fef61373de14483aad9c4723a410d0de00ee59063f804a23104279661911_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:47ab49d1e7a2175b06b1e73c79f1b98dc55778adc0638b6a6eb36bed0e7343b8_arm64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:a7dac46731507954f181d2a1766cda4d973ea07127757e1527a4ece7a09d3c1c_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-plugin-rhel9@sha256:bc1f7b04f4860fa4a8136331f541e9dd8497a16357e5b428c7fcdcc50f1241ee_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:0baee9f43009c32438afaf4a2578c4bbe6f13d941ebfd584ad9223269ceed20b_ppc64le",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:99ce5ccdbbe48df5c5323d8660e2609f24da8fe998dee969f0d555dad08aae5e_s390x",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:c9c234723ce4f834fe75e89636aedc7afc488d717439639728ab82dfe73ec4f8_amd64",
"OpenShift API for Data Protection 1.5:registry.redhat.io/oadp/oadp-velero-rhel9@sha256:f05cab7b47366dd652982905e2d9a5d4abcd0e1a5a2561b0d078c20e889e14cb_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:26997
Vulnerability from csaf_redhat - Published: 2026-06-24 11:04 - Updated: 2026-06-29 17:51A 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: 8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.src | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-doc-0:5.14.0-427.132.1.el9_4.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.x86_64 | — |
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.45 is now available with\nupdates to packages and images that fix several bugs and add enhancements.\n\nThis release includes a security update for Red Hat OpenShift Container\nPlatform 4.18.\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing\nKubernetes application platform solution designed for on-premise or private\ncloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container\nPlatform 4.18.45. See the following advisory for the container images for\nthis release:\n\nhttps://access.redhat.com/errata/RHSA-2026:27001\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go:\nAuthorization bypass due to improper HTTP/2 path validation\n(CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, acknowledgments, and other related information, refer to the CVE\npage(s) listed in the References section.\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these\nupdated packages and images when they are available in the appropriate\nrelease channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at\nhttps://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:26997",
"url": "https://access.redhat.com/errata/RHSA-2026:26997"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26997.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.45 packages and security update",
"tracking": {
"current_release_date": "2026-06-29T17:51:03+00:00",
"generator": {
"date": "2026-06-29T17:51:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26997",
"initial_release_date": "2026-06-24T11:04:21+00:00",
"revision_history": [
{
"date": "2026-06-24T11:04:21+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-24T11:04:21+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "8Base-RHOSE-4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el8"
}
}
},
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Enterprise"
},
{
"branches": [
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el8?arch=src"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.132.1.el9_4.src",
"product": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.src",
"product_id": "kernel-0:5.14.0-427.132.1.el9_4.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.132.1.el9_4?arch=src"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el9?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"product": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"product_id": "bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel-matched@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-partner@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel-matched@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-internal@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-partner@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "perf-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "perf-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "rtla-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"product_id": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.132.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el9?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"product": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"product_id": "bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-internal@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-partner@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-internal@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-partner@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "perf-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "perf-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"product_id": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.132.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el9?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"product_id": "bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"product_id": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.132.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el9?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"product": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"product_id": "bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-partner@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "perf-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "perf-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "rtla-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"product_id": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.132.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"product_id": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.18.0-202606160919.p2.g9795abd.assembly.stream.el9?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-427.132.1.el9_4?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"product_id": "kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-427.132.1.el9_4?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"relates_to_product_reference": "8Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"relates_to_product_reference": "8Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"relates_to_product_reference": "8Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"relates_to_product_reference": "8Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"relates_to_product_reference": "8Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.aarch64"
},
"product_reference": "bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.s390x"
},
"product_reference": "bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.x86_64"
},
"product_reference": "bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.src as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.src"
},
"product_reference": "kernel-0:5.14.0-427.132.1.el9_4.src",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-427.132.1.el9_4.noarch as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-doc-0:5.14.0-427.132.1.el9_4.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "perf-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "perf-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "perf-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.aarch64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.aarch64"
},
"product_reference": "rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.ppc64le"
},
"product_reference": "rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.s390x"
},
"product_reference": "rtla-0:5.14.0-427.132.1.el9_4.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.132.1.el9_4.x86_64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.x86_64"
},
"product_reference": "rtla-0:5.14.0-427.132.1.el9_4.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.src",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.x86_64"
]
}
],
"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": [
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64"
],
"known_not_affected": [
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.src",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-24T11:04:21+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation,\nwhich will be updated shortly for this release, for important instructions\non how to upgrade your cluster and fully apply this asynchronous errata\nupdate:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/",
"product_ids": [
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26997"
},
{
"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": [
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.src",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.aarch64",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.ppc64le",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.s390x",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.src",
"8Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el8.x86_64",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:bpftool-debuginfo-0:7.3.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.src",
"9Base-RHOSE-4.18:kernel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-64k-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-64k-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-abi-stablelists-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debug-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-aarch64-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-debuginfo-common-ppc64le-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-debuginfo-common-s390x-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-debuginfo-common-x86_64-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-doc-0:5.14.0-427.132.1.el9_4.noarch",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-ipaclones-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debug-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debug-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-rt-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-devel-matched-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-kvm-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-core-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-extra-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-rt-modules-partner-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-selftests-internal-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-tools-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:kernel-tools-libs-devel-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-uki-virt-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:kernel-zfcpdump-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-devel-matched-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-core-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-extra-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-internal-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:kernel-zfcpdump-modules-partner-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:libperf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.s390x",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.src",
"9Base-RHOSE-4.18:ose-azure-acr-image-credential-provider-0:4.18.0-202606160919.p2.g9795abd.assembly.stream.el9.x86_64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:python3-perf-debuginfo-0:5.14.0-427.132.1.el9_4.x86_64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.aarch64",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.ppc64le",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.s390x",
"9Base-RHOSE-4.18:rtla-0:5.14.0-427.132.1.el9_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:26999
Vulnerability from csaf_redhat - Published: 2026-06-24 15:10 - Updated: 2026-06-29 17:51A 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: 9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.src | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-doc-0:5.14.0-570.122.1.el9_6.noarch | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.aarch64 | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.ppc64le | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.s390x | — |
Workaround
|
|
| Unresolved product id: 9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.x86_64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Container Platform release 4.19.35 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.19.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the RPM packages for Red Hat OpenShift Container Platform 4.19.35. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:27004\n\nSecurity Fix(es):\n\n* google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation (CVE-2026-33186)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nAll OpenShift Container Platform 4.19 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc)\nor web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:26999",
"url": "https://access.redhat.com/errata/RHSA-2026:26999"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26999.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.35 packages and security update",
"tracking": {
"current_release_date": "2026-06-29T17:51:01+00:00",
"generator": {
"date": "2026-06-29T17:51:01+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:26999",
"initial_release_date": "2026-06-24T15:10:32+00:00",
"revision_history": [
{
"date": "2026-06-24T15:10:32+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-24T15:10:32+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T17:51:01+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Enterprise"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.122.1.el9_6.src",
"product": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.src",
"product_id": "kernel-0:5.14.0-570.122.1.el9_6.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.122.1.el9_6?arch=src"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"product_id": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.19.0-202606111920.p2.g6282230.assembly.stream.el9?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-kvm@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-kvm@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel-matched@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-partner@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-devel@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "perf-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "perf-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "rv-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "rv-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.122.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"product_id": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.19.0-202606111920.p2.g6282230.assembly.stream.el9?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-devel@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.122.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"product_id": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.19.0-202606111920.p2.g6282230.assembly.stream.el9?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt-addons@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel-matched@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-internal@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-partner@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-devel@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "perf-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "perf-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "rv-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "rv-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.122.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64",
"product_id": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.19.0-202606111920.p2.g6282230.assembly.stream.el9?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-partner@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "libperf-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-devel@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "perf-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "perf-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "rtla-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "rv-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "rv-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.122.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"product": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"product_id": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/ose-azure-acr-image-credential-provider@4.19.0-202606111920.p2.g6282230.assembly.stream.el9?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-570.122.1.el9_6?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"product_id": "kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-570.122.1.el9_6?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.src as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.src"
},
"product_reference": "kernel-0:5.14.0-570.122.1.el9_6.src",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-570.122.1.el9_6.noarch as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-doc-0:5.14.0-570.122.1.el9_6.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "libperf-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64"
},
"product_reference": "ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "perf-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "perf-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "perf-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "rtla-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.122.1.el9_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.aarch64"
},
"product_reference": "rv-0:5.14.0-570.122.1.el9_6.aarch64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.122.1.el9_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.ppc64le"
},
"product_reference": "rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.122.1.el9_6.s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.s390x"
},
"product_reference": "rv-0:5.14.0-570.122.1.el9_6.s390x",
"relates_to_product_reference": "9Base-RHOSE-4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.122.1.el9_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.x86_64"
},
"product_reference": "rv-0:5.14.0-570.122.1.el9_6.x86_64",
"relates_to_product_reference": "9Base-RHOSE-4.19"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.src",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.x86_64"
]
}
],
"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": [
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64"
],
"known_not_affected": [
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.src",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-24T15:10:32+00:00",
"details": "For OpenShift Container Platform 4.19 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/release_notes/",
"product_ids": [
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26999"
},
{
"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": [
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.src",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.src",
"9Base-RHOSE-4.19:kernel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-abi-stablelists-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debug-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-aarch64-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-debuginfo-common-ppc64le-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-debuginfo-common-s390x-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-debuginfo-common-x86_64-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-doc-0:5.14.0-570.122.1.el9_6.noarch",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-ipaclones-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-64k-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-64k-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debug-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-devel-matched-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-kvm-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-core-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-extra-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-rt-modules-partner-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-selftests-internal-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-tools-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:kernel-tools-libs-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-uki-virt-addons-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:kernel-zfcpdump-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-devel-matched-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-core-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-extra-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-internal-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:kernel-zfcpdump-modules-partner-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:libperf-devel-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.aarch64",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.ppc64le",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.s390x",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.src",
"9Base-RHOSE-4.19:ose-azure-acr-image-credential-provider-0:4.19.0-202606111920.p2.g6282230.assembly.stream.el9.x86_64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:python3-perf-debuginfo-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rtla-0:5.14.0-570.122.1.el9_6.x86_64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.aarch64",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.ppc64le",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.s390x",
"9Base-RHOSE-4.19:rv-0:5.14.0-570.122.1.el9_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:27001
Vulnerability from csaf_redhat - Published: 2026-06-24 10:00 - Updated: 2026-06-29 18:45A 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-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_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:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_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:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_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:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_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:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_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:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_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:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_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:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_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:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_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:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_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:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_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:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_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:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_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:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_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:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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 Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64 | — |
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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_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:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_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:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_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:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_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:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_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:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_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:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_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:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_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:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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.45 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.45. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:26997\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:27001",
"url": "https://access.redhat.com/errata/RHSA-2026:27001"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_27001.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.45 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T18:45:36+00:00",
"generator": {
"date": "2026-06-29T18:45:36+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:27001",
"initial_release_date": "2026-06-24T10:00:15+00:00",
"revision_history": [
{
"date": "2026-06-24T10:00:15+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-24T10:02:03+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T18:45:36+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/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Af9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781180437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Adf58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1781179378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781180421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781183691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781212406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Afc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781183395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781268140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781184092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781179440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781179743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781188423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781183015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781183873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781188791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781212779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781181110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1781179222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Ab405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1781179315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1781179790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ae83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781207725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ab6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781180339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781179931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1781207893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Afa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781546249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ac82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781212528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Af3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781210060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781185352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aa587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781188785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ae2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781188413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781184413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Ac61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781110701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1781110728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781546029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781183371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781181927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781188959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781186187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ab116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781732306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781186833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ab66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781180003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ae6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781212488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781730847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781612340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Af674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781184354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781207532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Abb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781179633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ab0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781732530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781183955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781184517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781212506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781184033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781208494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Afa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781212549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781187394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781209127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Aec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781180222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781179319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Afd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781185956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781686585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ac3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781212825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781185360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Aad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781183414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781212678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781181531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Af15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1781207108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Abc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1781179416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Ab996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1781179473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ae4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1781179417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Abc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1781179311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781558248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Aebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781558257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1781179408"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Aaab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1781179450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Aa43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1781179414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aaaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Aac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1781179422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781181101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781213267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781182673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781184152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781188078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ac9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ad02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781179803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781188751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781184872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781179668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781182484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781188489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Abb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781185867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781186679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aa157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781187292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781210885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ac4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781180333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781186703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ac52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781183241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781185554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781180613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781180821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Abe694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781180929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Aa2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781181339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781187302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aa68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781182790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781188784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781185271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Ad227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781182594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ab2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781188673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781180412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Aaa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781182153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Afd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781181681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781187409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Ad1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781182804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1781179402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1781181088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1781181184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1781179431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1781179500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Aeae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1781179438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1781179607"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Aeb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1781207838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1781179696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1781179419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ad42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781212420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781182172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781185262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781213151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3Aad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1781212795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781209776"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ac011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781185951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781185801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Affff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781180590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781184516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ae9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781179904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781181871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Aa263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1781179326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1781179361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781521969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aa966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781186027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781212647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781216985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Adb40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781188804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781184871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Ac5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Aa500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781208445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781181152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ac09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781213309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1781179286"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1781179279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Acdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781184660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ac3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781179556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Aac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781207550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781180718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781209060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781183941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781182706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781181568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Ae378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781208572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Afbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781185151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1781179889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1781180637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3Ab83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1781179253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1781179829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781182521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Af0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781188247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781181612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1781179325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1781179325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Abcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1781179277"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Abcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1781179277"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1781179315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Ab88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1781179324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781212831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Affc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781209814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781188407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781188434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781188689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Af468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781182702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781188937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1781179325"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Acc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1781179337"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1781180437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1781179378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781180421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ae9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781183691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781212406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781183395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Af0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781268140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Acc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781184092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aa754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781179440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781179743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ac6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781188423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781183015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781183873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781188791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ab931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781212779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Aeb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781181110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781207725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781180339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781179931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3Ac592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1781207893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781546249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aa29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781212528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781210060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ac2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781185352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781188785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ae8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781188413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781184413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1781110701"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1781110728"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1781546029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781183371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Aaf68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781181927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781188959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Afe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781186187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781732306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ad5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781186833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Af03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781180003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781212488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781730847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781612340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ab4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781184354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781207532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781179633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781732530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Ae9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781183955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781184517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781212506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Af55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781184033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781208494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ad38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781212549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781187394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781209127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ac6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781180222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781179319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Aad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781185956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781686585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ab8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781212825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781185360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ae85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781183414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aeacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781212678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ae9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781181531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1781207108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Af584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1781179416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Af3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1781179473"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1781179417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Aac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1781179311"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1781558248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1781558257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1781179408"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1781179450"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Af65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1781179414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ae7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Aaa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1781179422"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ac9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781181101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781213267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781182673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Acdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781184152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Ab69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781188078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781179803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781188751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781184872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781179668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Ac223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781182484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781188489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Af0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781185867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781186679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781187292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ae2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781210885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781180333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Af2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781186703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781183241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Adbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781185554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781180613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781180821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Af3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781180929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ad48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781181339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781187302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781182790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Abb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781188784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781185271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781182594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ab7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781188673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Abb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781180412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781182153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Af661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781181681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ab9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781187409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781182804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1781179402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ad02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1781181088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1781181184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ad427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1781179431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1781179419"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781212420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781182172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781185262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781213151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1781212795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781209776"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781185951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781185801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Acb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781180590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781184516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781179904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781181871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Aa3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1781179326"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Acea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1781179361"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781521969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ac44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781186027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781212647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781216985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ae9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781188804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781184871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Aa552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781208445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781181152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781213309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781184660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781179556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781207550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Aacdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781180718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781209060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781183941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Acb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781182706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Aff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781181568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781208572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781185151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ab117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781182521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781188247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ad7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781181612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781212831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Aebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781209814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781188407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Aeafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781188434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Abd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781188689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781182702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Af8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781188937"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781180421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781183691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781212406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Aa9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781183395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781268140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Aee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781184092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aaadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781179440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781179743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781188423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781183015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ac2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781183873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Aa51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781188413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781188791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781212779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781181110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781207725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aa5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781180339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781179931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1781207893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781546249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Afe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781212528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781210060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781185352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781188785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781184413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781183371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781181927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781188959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781186187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781732306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781186833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Aa79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781180003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781212488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781730847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781612340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781184354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781207532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Aacb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781179633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781732530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781183955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781184517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Adc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781212506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781184033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781208494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781212549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781187394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Abe69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781209127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781180222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Af48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781179319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781185956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Af956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781686585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ac6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781212825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781185360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781183414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ae22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781212678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ae20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781181531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aa78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781181101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781213267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Af7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781182673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Afb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781184152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781188078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ad4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781179803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ab36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781188751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Afca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781184872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781179668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Adeec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781182484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781188489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Af5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781185867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781186679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781187292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781210885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ab7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781180333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Ade68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781186703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781183241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781185554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781180613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781180821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Abe5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781180929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ade98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781181339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ae2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781187302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ad5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781182790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aa69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781188784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781185271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Aee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781182594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781188673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ad79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781180412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ae38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781182153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781181681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781187409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aa8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781182804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1781179500"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Af994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1781179438"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1781179607"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1781207838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ab72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1781179696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781212420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781182172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781185262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Afc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781213151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3Aabe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1781212795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Ad29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781209776"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781185951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ad7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781185801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ac99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781180590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781184516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781179904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781181871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781186027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781212647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781216985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ae27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781188804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781184871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Ab41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781208445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Ac16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781181152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Adbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781213309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781184660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781179556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781207550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781180718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Aed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781209060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781183941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Acd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781182706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Abd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781181568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781208572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781185151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781182521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781188247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781181612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781212831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781209814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Af0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781188407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781188434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ae4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781188689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781182702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781188937"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1781184545"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1781180421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1781183691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1781212406"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Aa42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1781183395"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aa2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1781268140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1781184092"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1781179440"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1781179743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1781188423"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1781183015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1781183873"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1781188791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1781212779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Adbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1781181110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1781179222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1781179315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1781179790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Ad9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1781207725"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Af9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1781180339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1781179931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9\u0026tag=1781207893"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1781546249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1781212528"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1781210060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Af94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1781185352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ab22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1781188785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1781188413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Aefafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1781184413"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Abe0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1781183371"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Aed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1781181927"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Af8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1781188959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1781186187"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1781732306"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1781186833"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ad17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1781180003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1781212488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Afc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1781730847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1781612340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1781184354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1781207532"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1781179633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Af7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1781732530"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1781183955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1781184517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1781212506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1781184033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1781208494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1781212549"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Ac3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1781187394"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1781209127"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1781182241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1781180222"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Af7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1781179319"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Ae50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1781185956"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Aacaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1781686585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1781212825"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1781185360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Aa3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1781183414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1781212678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1781181531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aa0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1781187225"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Adcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1781181101"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Aa56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1781213267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1781182673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1781184152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Aac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1781188078"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Aa1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1781179803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Afcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1781188751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1781184872"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1781179668"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1781182484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1781188489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1781185867"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Ae4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1781186679"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Ae2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1781187292"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ac82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1781210885"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1781180333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1781186703"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1781183241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Af7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1781185554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1781180613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Af426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1781180821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1781180929"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1781186237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ad6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1781181339"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1781187302"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1781182790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1781188784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Af19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1781185271"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3Add3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1781182594"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1781188673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1781180412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1781182153"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1781181681"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1781187409"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1781182804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1781179402"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1781181088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1781181184"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1781179431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1781207838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Afdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1781212420"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1781182172"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1781185262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aa4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1781213151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3Ab448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-altinfra-rhel9\u0026tag=1781212795"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Aa326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1781209776"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Acda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1781185951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1781185801"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Affbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1781180590"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1781184516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ab90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1781179904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ab309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1781181871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Abb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1781521969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1781186027"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1781212647"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1781216985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1781213115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1781188804"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1781184871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Aec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1781185906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1781208445"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1781181152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1781213309"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1781184660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1781179556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1781207550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1781180718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1781209060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Af608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1781183941"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1781186459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1781182706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1781181568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1781208572"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1781185151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1781179889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1781180637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1781179253"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Aa69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1781179829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1781182521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1781188247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Af2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1781181612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Aa7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1781212831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1781209814"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ade7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1781188407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1781188434"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ae9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1781188689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1781182702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1781188937"
}
}
}
],
"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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64 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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le 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:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_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:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64 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:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_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:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x 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:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_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:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x 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:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_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:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64 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:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_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:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le 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:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_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:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64 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:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_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:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x 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:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_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:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le 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:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_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:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64 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:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64 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:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_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:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le 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:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64 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:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_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:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x 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:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_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:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64 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:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64 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:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x 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:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_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:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64 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:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_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:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le 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:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_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:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x 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:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64 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:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_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:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le 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:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_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:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64 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:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_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:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le 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:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_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:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64 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:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_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:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64 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:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_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:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x 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:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_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:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64 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:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_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:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64 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:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_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:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x 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:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_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:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le 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:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_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:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le 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:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_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:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64 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:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_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-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x 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:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_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:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64 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:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x 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:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_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:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64 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:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_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:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64 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:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le 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:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x 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:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_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:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64 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:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_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:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64 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:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_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:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le 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:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_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:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64 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:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_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:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le 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:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_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:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64 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:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x 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:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_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:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le 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:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_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:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x 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:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_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:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64 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:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_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:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64 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:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_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:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le 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:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_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:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64 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:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_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:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x 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:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_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:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64 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:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"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:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64 as 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:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"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:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64 as 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:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"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:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le as 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:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"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:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x as 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:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"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:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64 as 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:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"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:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64 as 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:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"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:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x as 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:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"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:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le as 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:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"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:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64 as 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:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"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:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64 as 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:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"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:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le as 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:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"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:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x as 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:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"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:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x as 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:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"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:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le as 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:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"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:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64 as 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:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"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:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64 as 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:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"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:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64 as 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:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"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:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le as 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:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"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:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x as 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:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"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:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64 as 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:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"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:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le as 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:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"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:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64 as 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:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"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:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x as 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:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"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:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64 as 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:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"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:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64 as 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:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"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:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64 as 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:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"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:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64 as 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:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"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:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64 as 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:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"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:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64 as 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:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"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:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64 as 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:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"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:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64 as 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:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"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:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64 as 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:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"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:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64 as 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:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"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:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64 as 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:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"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:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64 as 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:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"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:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64 as 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:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"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:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64 as 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:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"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:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64 as 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:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"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:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64 as 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:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"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:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64 as 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:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"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:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64 as 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:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"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:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64 as 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:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"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:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64 as 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:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"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:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64 as 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:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"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:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64 as 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:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"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:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64 as 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:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"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:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64 as 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:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"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:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64 as 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:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"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:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64 as 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:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"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:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64 as 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:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"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:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64 as 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:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"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:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x as 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:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"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:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64 as 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:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"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:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le as 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:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"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:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64 as 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:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"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:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64 as 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:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"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:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x as 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:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"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:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le as 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:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"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:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le as 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:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"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:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x as 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:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"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:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64 as 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:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"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:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64 as 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:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"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:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64 as 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:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"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:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le as 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:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"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:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64 as 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:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"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:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x as 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:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"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:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le as 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:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"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:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64 as 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:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"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:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x as 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:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"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:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64 as 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:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"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:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64 as 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:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"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:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le as 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:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"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:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64 as 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:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"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:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x as 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:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"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:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le as 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:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"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:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64 as 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:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"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:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x as 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:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"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:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64 as 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:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"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:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x as 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:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"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:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64 as 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:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"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:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le as 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:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"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:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64 as 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:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"relates_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:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64 as a 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:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"relates_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:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le as a 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:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"relates_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:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64 as a 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:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"relates_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:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x as a 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:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"relates_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:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64 as a 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:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"relates_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:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64 as a 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:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"relates_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:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x as a 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:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"relates_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:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le as a 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:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"relates_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:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64 as a 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:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"relates_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:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le as a 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:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"relates_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:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64 as a 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:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"relates_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:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x as a 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:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"relates_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:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64 as a 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:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"relates_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:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le as a 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:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"relates_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:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x as a 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:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"relates_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:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64 as a 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:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"relates_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:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le as a 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:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"relates_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:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64 as a 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:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"relates_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:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64 as a 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:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"relates_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:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x as a 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:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"relates_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:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64 as a 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:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"relates_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:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x as a 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:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"relates_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:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le as a 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:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"relates_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:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64 as a 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:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"relates_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:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le as a 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:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"relates_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:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64 as a 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:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"relates_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:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64 as a 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:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"relates_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:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x as a 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:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"relates_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:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64 as a 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:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"relates_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:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x as a 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:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"relates_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:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64 as a 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:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"relates_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:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le as a 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:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"relates_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:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64 as a 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:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"relates_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:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x as a 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:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"relates_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:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64 as a 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:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"relates_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:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le as a 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:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"relates_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:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x as a 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:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"relates_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:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64 as a 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:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"relates_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:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le as a 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:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"relates_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:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64 as a 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:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"relates_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:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64 as a 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:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"relates_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:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le as a 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:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"relates_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:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x as a 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:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"relates_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:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64 as a 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:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"relates_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:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le as a 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:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"relates_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:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64 as a 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:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"relates_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:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x as a 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:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"relates_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:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64 as a 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:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"relates_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:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64 as a 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:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"relates_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:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le as a 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:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"relates_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:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x as a 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:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"relates_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:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64 as a 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:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"relates_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:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x as a 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:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"relates_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:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le as a 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:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"relates_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:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64 as a 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:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"relates_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:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64 as a 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:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"relates_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:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x as a 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:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"relates_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:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64 as a 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:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"relates_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:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64 as a 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:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"relates_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:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le as a 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:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"relates_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:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x as a 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:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"relates_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:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64 as a 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:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"relates_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:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64 as a 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:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"relates_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:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le as a 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:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"relates_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:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64 as a 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:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"relates_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:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x as a 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:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"relates_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:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64 as a 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:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"relates_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:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le as a 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:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"relates_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:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le as a 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:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"relates_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:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x as a 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:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"relates_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:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64 as a 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:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"relates_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:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64 as a 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:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"relates_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:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64 as a 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:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"relates_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:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le as a 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:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"relates_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:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64 as a 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:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"relates_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:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x as a 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:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"relates_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:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64 as a 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:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"relates_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:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x as a 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:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"relates_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:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64 as a 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:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"relates_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:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le as a 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:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"relates_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:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le as a 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:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"relates_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:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64 as a 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:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"relates_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:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64 as a 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:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"relates_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:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x as a 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:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"relates_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:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x as a 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:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"relates_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:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64 as a 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:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"relates_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:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le as a 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:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"relates_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:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64 as a 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:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"relates_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:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64 as a 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:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"relates_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:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le as a 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:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"relates_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:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64 as a 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:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"relates_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:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x as a 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:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"relates_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:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64 as a 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:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"relates_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:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le as a 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:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"relates_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:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64 as a 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:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"relates_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:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x as a 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:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"relates_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:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le as a 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:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"relates_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:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64 as a 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:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"relates_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:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64 as a 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:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"relates_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:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x as a 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:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"relates_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:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64 as a 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:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"relates_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:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le as a 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:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"relates_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:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x as a 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:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"relates_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:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64 as a 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:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"relates_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:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64 as a 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:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"relates_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:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x as a 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:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"relates_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:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64 as a 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:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"relates_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:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le as a 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:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"relates_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:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le as a 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:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"relates_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:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64 as a 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:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"relates_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:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x as a 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:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"relates_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:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64 as a 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:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"relates_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:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le as a 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:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"relates_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:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64 as a 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:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"relates_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:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x as a 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:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"relates_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:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64 as a 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:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"relates_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:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x as a 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:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"relates_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:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le as a 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:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"relates_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:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64 as a 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:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"relates_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:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64 as a 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:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"relates_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:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le as a 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:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"relates_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:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64 as a 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:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"relates_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:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64 as a 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:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"relates_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:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x as a 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:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"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:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64 as 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:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"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:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le as 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:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"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:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64 as 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:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"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:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x as 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:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"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:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64 as 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:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"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:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x as 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:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"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:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le as 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:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"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:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64 as 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:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"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:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64 as 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:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"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:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x as 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:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"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:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64 as 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:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"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:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le as 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:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"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:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64 as 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:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"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:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le as 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:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"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:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64 as 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:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"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:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x as 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:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"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:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le as 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:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"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:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x as 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:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"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:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64 as 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:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"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:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64 as 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:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"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:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le as 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:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"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:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64 as 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:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"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:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64 as 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:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"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:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le as 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:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"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:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64 as 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:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"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:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le as 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:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"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:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x as 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:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"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:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64 as 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:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"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:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le as 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:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"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:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64 as 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:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"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:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le as 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:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"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:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x as 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:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"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:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64 as 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:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"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:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64 as 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:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"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:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64 as 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:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"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:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le as 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:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"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:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64 as 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:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"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:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x as 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:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"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:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le as 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:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"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:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x as 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:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"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:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64 as 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:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"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:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64 as 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:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"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:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64 as 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:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"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:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x as 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:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"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:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le as 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:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"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:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64 as 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:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"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:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64 as 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:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"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:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x as 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:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"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:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64 as 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:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"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:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le as 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:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"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:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le as 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:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"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:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x as 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:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"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:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64 as 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:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"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:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64 as 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:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"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:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x as 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:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"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:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64 as 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:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"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:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le as 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:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"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:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64 as 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:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"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:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le as 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:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"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:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64 as 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:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"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:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x as 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:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"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:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64 as 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:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"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:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64 as 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:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"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:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le as 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:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"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:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64 as 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:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"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:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x as 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:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"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:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x as 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:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"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:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64 as 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:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"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:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64 as 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:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"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:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le as 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:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"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:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le as 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:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"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:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64 as 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:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"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:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x as 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:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"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:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64 as 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:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"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:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64 as 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:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"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:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64 as 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:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"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:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le as 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:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"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:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64 as 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:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"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:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le as 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:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"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:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64 as 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:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"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:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64 as 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:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"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:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64 as 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:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"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:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le as 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:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"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:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64 as 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:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"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:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64 as 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:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"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:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le as 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:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"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:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64 as 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:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"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:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x as 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:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"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:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le as 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:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"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:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64 as 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:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"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:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le as 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:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"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:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64 as 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:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"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:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64 as 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:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"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:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x as 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:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"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:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x as 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:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"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:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le as 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:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"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:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64 as 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:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"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:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64 as 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:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"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:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64 as 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:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"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:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x as 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:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"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:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64 as 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:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"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:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le as 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:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"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:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64 as 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:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"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:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x as 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:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"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:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x as 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:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"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:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64 as 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:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"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:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64 as 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:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"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:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x as 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:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"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:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le as 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:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"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:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x as 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:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"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:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64 as 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:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"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:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64 as 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:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"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:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x as 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:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"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:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64 as 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:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"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:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64 as 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:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"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:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x as 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:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"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:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64 as 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:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"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:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64 as 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:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"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:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le as 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:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"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:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64 as 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:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"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:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x as 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:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"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:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64 as 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:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"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:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le as 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:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"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:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64 as 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:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"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:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64 as 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:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"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:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le as 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:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"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:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x as 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:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"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:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64 as 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:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"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:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le as 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:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"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:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64 as 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:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"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:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x as 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:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"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:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64 as 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:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"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:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64 as 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:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"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:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64 as 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:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"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:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64 as 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:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"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:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64 as 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:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"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:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64 as 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:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"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:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64 as 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:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"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:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le as 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:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"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:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64 as 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:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"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:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x as 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:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"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:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x as 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:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"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:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64 as 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:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"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:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le as 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:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"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:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64 as 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:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"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:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64 as 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:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"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:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x as 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:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"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:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64 as 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:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"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:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le as 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:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"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:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64 as 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:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"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:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64 as 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:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"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:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x as 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:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"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:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le as 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:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"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:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le as 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:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"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:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64 as 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:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"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:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64 as 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:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"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:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x as 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:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"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:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x as 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:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"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:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64 as 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:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"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:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le as 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:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"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:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64 as 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:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"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:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64 as 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:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"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:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x as 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:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"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:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le as 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:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"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:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64 as 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:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"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:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64 as 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:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"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:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64 as 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:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"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:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64 as 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:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"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:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64 as 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:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"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:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64 as 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:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"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:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64 as 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:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"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:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le as 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:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"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:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x as 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:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"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:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le as 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:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"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:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64 as 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:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"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:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64 as 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:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"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:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64 as 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:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"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:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x as 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:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"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:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64 as 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:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"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:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le as 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:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"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:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64 as 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:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"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:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64 as 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:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"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:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le as 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:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"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:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x as 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:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"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:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le as 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:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"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:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64 as 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:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"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:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64 as 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:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"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:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x as 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:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"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:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64 as 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:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"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:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x as 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:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"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:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le as 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:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"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:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64 as 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:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"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:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64 as 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:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"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:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64 as 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:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"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:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le as 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:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"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:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x as 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:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"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:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x as 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:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"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:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64 as 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:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"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:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le as 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:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"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:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64 as 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:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"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:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64 as 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:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"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:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x as 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:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"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:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le as 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:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"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:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64 as 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:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"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:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64 as 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:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"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:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x as 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:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"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:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le as 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:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"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:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64 as 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:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"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:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x as 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:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"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:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le as 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:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"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:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64 as 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:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"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:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64 as 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:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"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:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64 as 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:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"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:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le as 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:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"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:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64 as 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:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"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:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x as 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:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"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:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x as 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:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"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:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64 as 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:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"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:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64 as 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:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"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:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le as 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:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"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:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64 as 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:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"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:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le as 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:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"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:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64 as 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:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"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:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x as 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:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"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:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le as 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:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"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:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64 as 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:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"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:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64 as 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:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"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:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x as 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:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"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:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64 as 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:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"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:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x as 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:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"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:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64 as 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:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"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:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le as 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:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"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:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64 as 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:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"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:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64 as 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:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"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:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64 as 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:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"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:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le as 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:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"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:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x as 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:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"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:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64 as 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:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"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:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le as 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:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"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:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x as 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:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"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:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64 as 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:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"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:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64 as 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:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"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:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64 as 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:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"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:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x as 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:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"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:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le as 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:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"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:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64 as 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:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"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:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le as 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:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"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:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x as 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:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"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:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64 as 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:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"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:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64 as 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:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"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:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le as 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:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"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:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x as 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:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"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:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64 as 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:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"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:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64 as 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:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"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:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64 as 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:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"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:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le as 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:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"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:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64 as 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:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"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:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x as 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:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"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:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64 as 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:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"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:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le as 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:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"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:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x as 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:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"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:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64 as 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:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"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:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le as 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:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"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:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x as 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:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"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:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64 as 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:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"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:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64 as 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:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"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:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64 as 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:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"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:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x as 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:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"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:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64 as 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:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"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:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le as 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:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"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:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64 as 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:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"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:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64 as 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:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"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:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le as 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:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"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:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x as 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:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"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:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64 as 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:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"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:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le as 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:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"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:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x as 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:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"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:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64 as 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:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"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:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64 as 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:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"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:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le as 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:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"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:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x as 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:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"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:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64 as 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:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"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:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64 as 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:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"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:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64 as 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:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"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:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x as 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:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"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:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le as 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:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"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:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le as 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:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"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:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x as 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:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"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:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64 as 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:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"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:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64 as 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:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"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:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x as 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:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"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:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64 as 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:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"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:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le as 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:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"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:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64 as 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:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"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:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x as 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:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"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:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64 as 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:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"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:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le as 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:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"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:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64 as 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:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"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:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64 as 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:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"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:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x as 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:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"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:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le as 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:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"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:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64 as 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:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"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:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x as 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:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"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:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le as 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:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"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:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64 as 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:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"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:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64 as 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:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"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:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64 as 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:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"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:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le as 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:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"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:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le as 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:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"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:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64 as 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:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"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:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le as 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:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"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:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64 as 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:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"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:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64 as 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:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"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:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le as 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:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"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:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x as 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:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"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:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le as 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:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"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:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64 as 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:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"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:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64 as 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:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"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:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x as 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:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"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:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64 as 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:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"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:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64 as 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:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"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:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le as 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:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"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:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64 as 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:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"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:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64 as 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:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"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:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le as 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:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"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:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x as 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:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"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:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x as 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:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"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:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64 as 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:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"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:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64 as 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:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"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:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le as 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:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"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:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64 as 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:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"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:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64 as 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:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"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:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x as 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:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"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:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le as 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:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"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:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x as 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:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"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:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le as 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:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"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:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64 as 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:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"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:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64 as 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:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"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:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le as 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:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"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:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x as 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:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"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:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64 as 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:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"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:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64 as 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:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"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:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le as 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:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"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:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x as 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:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"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:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64 as 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:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"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:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64 as 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:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"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:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x as 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:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"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:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64 as 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:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"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:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le as 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:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"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:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64 as 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:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"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:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le as 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:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"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:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64 as 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:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"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:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64 as 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:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"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:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x as 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:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"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:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x as 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:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"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:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64 as 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:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"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:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le as 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:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"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:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64 as 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:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"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:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64 as 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:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"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:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x as 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:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"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:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64 as 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:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"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:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le as 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:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"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:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64 as 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:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"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:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64 as 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:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"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:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64 as 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:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"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:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64 as 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:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"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:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64 as 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:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"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:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64 as 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:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"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:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64 as 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:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"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:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64 as 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:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_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:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64 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:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_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:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64 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:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_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:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le 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:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_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:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x 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:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_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:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le 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:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_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:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x 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:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_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:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64 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:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_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:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64 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:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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-24T10:00:15+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:67c63abae7a1baa34c48c1223c555322b7f9113eb3373f7e9575db43ce24c8d8\n\n (For s390x architecture)\n The image digest is sha256:72e912eecbaef66cd3fca455fdaad9589be3509a1da96c6521aad57f5950fe9a\n\n (For ppc64le architecture)\n The image digest is sha256:2d57b8a652a5df4acbabf0e3d408de2e4e67a509b62d4a1ea8553eccc5d68973\n\n (For aarch64 architecture)\n The image digest is sha256:0cbb059d26d4691a2742d3fb84fb8b18ceb959e4439a2a135e6bb88875c61081\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-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27001"
},
{
"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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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 Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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-06-24T10:00:15+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:67c63abae7a1baa34c48c1223c555322b7f9113eb3373f7e9575db43ce24c8d8\n\n (For s390x architecture)\n The image digest is sha256:72e912eecbaef66cd3fca455fdaad9589be3509a1da96c6521aad57f5950fe9a\n\n (For ppc64le architecture)\n The image digest is sha256:2d57b8a652a5df4acbabf0e3d408de2e4e67a509b62d4a1ea8553eccc5d68973\n\n (For aarch64 architecture)\n The image digest is sha256:0cbb059d26d4691a2742d3fb84fb8b18ceb959e4439a2a135e6bb88875c61081\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-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:27001"
},
{
"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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_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:2c3c20d411d9dbd8d8ff63f4a81686b2dad19188becf266ec627348faa9c8970_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:539d18f0e1b083d07ce0eef447140943107f8e7eab77ed058988cddb188ea622_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:666afcb022282a789204526808111597f9f82d82ae3abd77183885ad8da18437_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:9e57a4651dfd5d7f4c46f53d166832713aabf419e0d06c96d9d1164c6647c1af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:16950dfe6a18eef42ac78a01746aabc1be5a7aba8d0d316e52dbe7ebfcae58dc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:30b6d36bdc7b6eee70b45f967210c5c41bef221e50176018c3dbc0f8cbc46529_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7b3f5b0f96bf7302f445582e5cc5e6c5f2f162f99b520ad4b5375a78038ae545_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:930552f7214cbea5bce49e01b693719f3dbb5a1cc9fe8f88baa2d59f11fb7d7b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3340f0847f23b78cff4fdf11c1e5a02a7235e4f485c35c2c5b7a9551198bba79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a0fa5b7d220463de3e5535ce9324d7b34a80525aefae77f9b9e38631dc7cfbf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:aaa9942fbb60d86027b1ccbbbb00a89f5206e2a825bfa296df00c1b21a97113a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:e7885379488a3ec3422b9a388058ca8034d5f36ea8c96b78b5684e05f92974ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:2a374f4f33286b6bd41906d5646924175ee09d591ab9dfaf196334629f0f91e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:37e2a1dd19b4af867ee20aa471047fa547494f5af90db704f7e6aa109e26dc0e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:60645e90ce40aff947ec45bae63facbb491adbee8617582be2e3255eeede2632_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:c9f15c3ba5404618510581a47e3378ca80224c5d801e311cd201ece78efe747d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:0082f0711dc378cd66d1d4daea2c3d5319552037b03c11c6f033850f08a2a4d8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:2ec4d31e2977369a86aa779f971e03ba39d30135b5c8ba60f3d85de33640bd79_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:5db27f5e6dee26b897402f3a6b7dc6e21f1e96e7e3b1915b9b421b4dcc0a3dd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:642281d34b4260919936e72ffc26ceb25f3f0407efcbf00d1d76af1bdeaa5e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:895dfb7203329f2eb741d16a2a51c08858d4cca09b7845ac8917e507985bc456_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:91aa38f8a3760e4145b37feaef184d0451f4498eadf38bf26d8e29fd73191b35_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:971ead2240892a3d37568ffc76d68cd4be96dda1f06fb67205c8b861156adb27_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:fa7757f0c872f29cdd2699576116059b97b6bf526b3933ceb4947339893f8e6f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:2352184eb81152269e491ebd262cbdfa91f137b6705cd5bd5c87fc86ee4a4330_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:a29c51d864e5813e4fea20cccf10b4eb7a739984b803bafb35e3051455c912ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c82ac44aa2317fff98e514328c525f9725606bdf576b4b8ddcc429c16b75968e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:fe3327f99397077257dfe453070e36a1fbb364b4080a4dc53f6695480838b6ae_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:0812fcff72badfded06f1b1bd5350a694f4f9bbe616ae77b33262f2932325297_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:589aaf5e352eda053bb6b46880cb03f2d781e5aa8bba973a07cdf581bc06393f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:7766f72e65bb39d3f28ef84250245b33dbd9a9608333d58c3db48a8565229926_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:8e165c7f1bc232e3a27879a11ad2a8c374797886a18b107595b0e60b19c21965_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:43eec8e0dec8995ce432b8ba016ca8b0e9c98814bb822e0375a2eceb17382afe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:48b8186cdf069236f3d916886ee6034b0e253291d12375f31fd6ceed3e46bad4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:4b2b0a95b806b1f9ce88694729c471cd2c80e01e5ecf416447a0748d478d8d08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:629edd218fc9e85de10eb6ba0bf446e3fa43b2aab7bfab7276b553b6b3f514ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:2f87dc944b2128fe15383a72588f37604ce96dc3cc9dff76324d50a45bc02928_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:80b57666c14f4d3d24ec1391d959ad5af84f7968e6b7a59c0cf14b293c4b0b75_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:c011a9826556dee4d9af15d7251dfd756f23e4c11dccb6156eb64b3789be73fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:cda443a13d3bea41f7c62b4bd5419201e989f0f4023bd581f7c9d54ab05641b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:185f022c508071cf78ac7bec8888501f79e10afd0e6522c14cfa9db71f6b6d14_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:56835fe200e9b0919bfd4c1151ea3479afaf53bbdabac91eac24666749d885eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9a2dbf98eb0f8ad4cd0cad24ec540c42ec603435106941ad961c6878745ec4da_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:9bda303ef498a15bec435fd6160530a37292e921a8a61d37d1e8517188ef17b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:154b1e7f7a34edfccc54cceaa8f1e93a53e9244d809049912112e253f5d2b255_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:60fa83cc492b083a04365ebdb7bb40a7b75ed03e7180aa8e5438547633b52e91_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:c09369f8626815dece61b68e71a30ca4284068390d0fdd221c07c80d13a60777_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dbcd92898962421037b3ddb7f8482ac6da31b0bfd561d077b8d4df14a3813a2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7210047e3ebcc9e53db2431315cf0f5baffb4aed151b068c7f7abbb386a55a26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:9f6b5436a0b1db12aef9323e015d608393416fc1b6a2ab9e282a569ec0ba71fa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b4ca58b7253613a4fdbaa7f4f803d89f0ff06d4cab6ab17c95fd882d67fc256d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:f674618c04c96648687f258fcbc6e1c6cd9acf0b6da4a94fe89b0fe52b7e191c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:0dd0bcc1a8a14869e15c141f6b1fa0ac274ad5fcc7f67035c52d0a34c49611b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:5928b9a8b72159897811e54a68d8b06f5a02b6c0e6b9338135d3022bd1b674ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:976890ac743305813b77adf7f33513d997273dda5822af30a4b76519cfd509d7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b117213afd5b1d105d64d37e46a0527f366435cf2a2647cb372d2a8548fd4dc4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:59b775e3963cdc5c916b0331a5bb108587741186785aea931e5c36572ce5a193_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:6e63b805497ca21a3ebb6ba7f3f8c53f464cc6302911f112a1ef6acf77a53ef1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:acaec25a63035130517cbff3a8c063784c5babcf2f13ca316b48ad5c31ddb239_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:f956a25078000aea106d22224617e31d03b6f62bb46857662c9ce47bf8aa9912_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:b8b3453716350220da64850c7c67ac2ad0dc17e86469f530cf54518ccc975377_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c3fa6313fc45de98537a0fe29e9560636f5c3fa8231b5ac430695c9b00348ccc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c6e83663ff0e1bdd6388de40b1731ce9c505c4961e7bb48c22ab46d5936b52aa_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:ef7f7b938e10f26a17bf7e22b1492a2963ba5170ce4f13ade06295e2bf516ca9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:032e2437bc07ee6d1fb4379c0ca21095c38593f23cbbf2e3dda6132267cdf7c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:11539c471ac9b3650b3ca1f77f7e5aa9622435bede85ff2783e40179ea011599_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:72178eb783e8c26d32fd803dec730bc953ab2c3eaf116bc8223cc451f6fc8b4e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:937301fe2644622e13a437927c9e5eae1e4bf337c58951c12b358745f0bed83b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:73f4e5a0f5bb2219aef598b95428f8abe1ff590f9b2a40956be99dc98e9963bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:a3a535cc0f114194812a8eaab8162cc1d1a6620c386f6ae689a73b0eb6d837b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:ad5f81ed756a5be9d5272b9d2a72b6c9f79649b99974e3516b4a23a1c7a3c562_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e85d31cc4e7da353026aef1c7f2a7c72a11caa82d6b8fdbcb29522a180c05ea1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:48dbaf1600a5dbd8ce0f5a0434b797d12cba1b7bde19897f02fa1902f68a4cb5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:9869633381bd1dbb47ff7168a0cf41a0134a81613229ce661c542bf8a34079f7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e22c4c2d4a6c6787ef000f3aa2ccf03da8a7e19d66b6217fb03c6e2a4459a5fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:eacd86e541b350cc912afcf8cf854e0d30eb87c53b22eafc2f81089d55892517_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0e6bb27c3dacc051cfd3b00c41161badf21a9e7259e30ae2c5a14dc54e8cf664_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:2a837080325f76a97ed5bc987c78810463ed051bf0f64fe731f48c4685dbee6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e20d087b6f2643beccbf78d55408bb25087a7b1b9e75111bc4a6e7d892c5fefc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:e9cf142651b96f0cb287839c68b73452266a35f400fda2514e12091cc653cf05_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:60b2277377b8df7985b18614ef493dd7fb784c5d06338dab16eb28f68698d64e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:f15f022871fb73ebae7b1d3561cc1d0ff0dc015b5fb6d784380d94f6c39f9015_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:bc9ae1d1e1493edfc81cd825339033bce42f8ced2129e2fdee8bea0aae2e0a81_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:f584ccb75b0707c6a8ff485cd7223513087804d92a973607327e66c4d38b3838_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:59da8a6cfeb3c4190daaba96799a76f767a690846698ca6f5736cac76342a034_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:e4d3ab53c9f87a35fb87b50a33d734c61e8016ea840944ea2cdce55bd8f91b7c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:b996282ad4816b28a615302d88ccf0f24c07fac2792daf719ec2b5dfe07a0b28_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:f3e2fe985606c7fc1920afadd8e8cef5d8d2fbebf0a0ffbb68557e807038af6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:ac9955371a4a2a002931efa9416baa1fc85fa42955e23cf8b3d585ab5ea30fe0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:bc426ccd0e4a808a68f5fa9287b393feace47b2aeb005abf2bae8296864f4d16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:22b3c41c310e9da6521776253a5587d4aad9531f7de13544ffe132051549ce06_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:5b6c970a8e8aa3ee2a2947b0be1b4b99cd97d0e9162e66a245fb60b74dd3d75d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:5c646ab1c4328c3bfb3834a9235ac81920b265688c8e6f55e04d5e06a2f4942c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:ebb7686f48eeb9ca1755fdbc9579998c9880d0fb33a1798fd95a8e866caa7afc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:387095dff5686f107e7f6e05fb7f53eeb44e1c87357f5e2bca3e9b02d0bbeb0b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:3e9faf30a40d6539bdcf0c120679087834484e6b8a99aaa00f4a1982de7fa714_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:a43d110bf8aaf90fcb5495d7355819f80586b0da6e1b2efe2a786698a5253e0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:f65d341809c686b368cb75ed35d6178b9986509335116804a95e496d0eb216e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:08b73961873fbd782b3fc0ee0edc7ba58543d4ca102d65760f38dfad28d6f7ef_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:aab6efb71454c8170c16af8c7798be2bacbdc5be9f65d55d2f4307d941320d7f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:9c011534bc497a881e7da1def62ab136765cfcbcd19b2edfcd657ecd4f91ea57_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:df58ca1df165fbb121e648abecb38daeab7677f62ca02ed5f5e8e7e3fc164012_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:25cf721cdb9c15841a5154f24a7bfd236648c4e0cd3e9ab3d6536515718b45ea_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:f9a843be0d8728b4317867ee9d8cfe7d29b3983a805037286d1e7bf0de468f37_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:aa37994f0817143cf8cf699c73cc21b5473e9d6ce46e9a312294b18bbd7b571f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:ac99c08d644d8a8a93f6fb1f94f2cd47939dd8b3aaa1d0f2ad5aa66179313999_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3d60b6cebb7ef9f4525542d7cb82dc3e5e5df2fd76fd4072b0be86960801f347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a78269c258153e983ad65bcb729c8c1436c0cbb12e6a5d1d5883741e05713d55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c9be247176bc3d4c88bdc1b77ad1affba149ba9cdc2159b52aed519a3d64c69f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dcc446c9a4376174329e6c7211b8955153ddfb3d0789010317ef4d0d52526413_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2ba684f88dd0e0da836528bd3f998ca6ef604794ad1ce744a4fe10697d0e4202_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:62b4967715c0bac57fea822257bd189ebb68a59bf64f6211d8fd07c68dc1b0e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:799a89e97bb2dc7410933e2fd9f312174c6396736328ca4da8dc1585ef9996f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a56687fd721112870050c808dfc323456d6147971c654b5a78f52135caf45209_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:6bd0122755d4edd70387000fa6c20f1a42073a16251f62a36788205b903481eb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8522ba7f5c9a4dde5f0b26be35ecd45bcf15045e1f3d9129773a3829dbd8eea0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8596896dca3fc1ceb010ff675f45c7eb7e1e5e95175ef9a86d0e9c024bdb29ed_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e9fc85083f8f6c0223d89ffc1c9891e47b86dd1502c4169f2742e550fefc9fde_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:6f691729588e12cb2d5238611a9c384ba09fa0658e2a1563bce4bbf330512672_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:7899368cc0ed9f32ecfb3efcf57585ac7584eaf9bc92b66e9a825a46ce8eb47a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:94e600f896caf0015adc664b19899855911592052f156202959274a2da222a77_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f7e7369570e8d4a09e4a1ae5e83ebd122af02a7689dd10dda556a0ceaea43e52_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:646b1c07981899027e82c2afb2480cc491d2e320a12634e1ecef8e33cf9bcbf8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:82565635ca5d29640928bb2de04d2aea226c909e47c1b1178f975759f5167181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:8edbaacee63d4d72cb122b80a57de46133bd5b56c93456f623f46aae42154ce8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:9382575f51b18fee482067bc6ebb79f93d18c64df5ccaff815ccdf50ba0a8411_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:3ee4cc172303f7c775d54d9889b084285d3b961ce8ccbef79a9075a9be2805de_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:7ccb42d32b35aaef9ac6db01e068131e8105a6c138902ad9126e7a09760452b5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:cdb2b36ca92de5b890180afc9b01b2fb62857494a84883a303c6d155b3d6b9c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:fb966410b0693ba48092a1f194e5ec6f26d28207aed688490163740b2476db8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:26df6499529224a022eeaa9f7725d8c82a3260d9073660e41211f15e456e1744_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:8005da77dac39fb96bef3cec1cce1d761702811be1137e69f6d4539582a1012c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:acb079fc6f4395ff063a95ec585ed782c7879a63ceae798c0be76f4de41284e3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:bb7065a5212222aa8ef70d38fe43c71968de3ed00914291efd8af05fe9cd5a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:30b73f22d7065c54bae7bd7c5dd58ca336da9f4708250aa6843bed22fa74f00e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:40264c831f535aae376e58591bedc5bc3ebb03f477e4b5eb2913ffa67ebbb7c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:ac6ee4a41b1bbfc6974d4758edaff824dbb398ce000eabe3fd94ce22618a8369_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:b69f2128ddcc3ca2fc800f668061a21140fdb1b02541f9c51493b5a1b974bfa1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:74aa39567185fe76592b7de749c0fd94ac2f647a59884877585bf857d3853059_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:a1d28687e1e4e225436949cb16275374aef8c62939fb2fdd9ed39ab49f4cb2b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d02236b750d80f45d62521dde96e99babe61f46f3576cc193c5794fcf9fdac8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:d4762eff5edf9960f6181d6c55748c50e25caf607deb8c87ec91edf5de22082f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2482b73663ec5b4feb29fa93c7ce07f8ca909130da95731515a79e23b49987e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3dfe2bec717575fa3b53d662dc849e7801023390a28ad53de937fee44245c77c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b36eda6aef209fcbb0d23872ce3664f56957d1bff67b9dbbd6c26343e97604c9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fcfd11401e26f48c93f2272d19a9933e789bc55e5a5b054de708eb17f4062cda_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1a2932dea265228dd2b0f4af9941f6f6588761e4bfea1cf04ed7f440639f362a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:4a3a0e9b920c1ea0727b2b0112a46b8bcc4d0e237b2f4af669c154cf821e1f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:7b8a17113dab94425092706f8d5b74eee84dafb9a6bfa7e8b1cc0f4e08fcd90a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fca375ef893ce7aa81c3799550d771ef57a65038f20049d02ea5f24b897b8d0a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:106d557c360e47ba73df0b2147ed24725db6b23eb82b664c585d183a72e0a68c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:1e31640eb0c71c16709e44cf8f329eb9bfd6b64024e76a85b5141ce141d6b1f9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6269bb38b6443ffbc96ec4e0027e33229f784bd2e86ce229ef3ce7258fb876de_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:643c209243aeeaadee15bcd78caef57f4840fb3c372d2dd0c1e77613f09b202f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:412ad9831ba3db7596ad66c5294f2c5e063db01c14981fd48a45ec703a1cd0dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:440f29a8ce10c9f6a1552ae3b20f44dd6c1c688ea0b6a8c12914f8b7a6b2083b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:c223836f30f72540002407db5f229efee5bbcf29ee5262616f5041a06c418b32_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:deec884dcb3b796d9dee1f708a2df73c1e67535777759711aeb8cbd497c9267a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:21029bb3cf083540341b1209db8940794f63d079f27f049fd188518da6bdb8ec_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:62e7ea80e9136fc7cf1d8c3f92cce839286bc1b7e0b9bcfe10a3bf4e8ba84a4d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:67c7c98bfad68c53a76147f09ed33198080c44abd313f05e390f946bcfb0d2d3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:97982a82ad7fa4fe5579481fdfd6e40f2d6d51150b884f6087456c05f86c5fc8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:5e98e715076c396da3a41d257f006fbeefeeeae74c44f1d200fec9b29ad5f96a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:bb9089c81227c3f43d9cbf4927e31f4facd842289dd5d1992cc3506b0f5f5c5b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f0bde1f1fd732de8dfed0cb72b2701d569e5e5b6a55fecfc2cad7fa89c56b6a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:f5fb0a73543b49e7883ef1c536f7b44bd42e02318416e1f7d3cfef28d2a0add1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:09887d59901ffd5c8af0a02af7226e0822d6f48526a9989391846523ba790531_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:2b3bd78d3f81cd737e509044f1cd64da1ec8d1cd407c141efc875cbd289692e7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:98fc528c35e1e90df76651c1c0a1048e5aacf06f4778b44073168f6eeadc71aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:e4d3de1cfcec6e579281bf0a19c1c7e6cdc16f646745e2c3bdc0bfc58b7112ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:523c72335bc0edc39e0eec32dd5303bf6e18a544a07d43bd4ff8ab64155aa76a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:7634dbba2bb4727969f40b5591d3f3558fc71591cdd952d01f8244486a49d156_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a157cab72c8692135370344c0de3f33988195d1ecae850a35cf6d7cf1b2d64ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:e2ba482393de931669bd84a234f8c9a444f51a559684dca846fd29356314bfc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:360b1787bee269af70b64e283021b2e9018c3ed4ba5ecabc7bf7e48f04a39de3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:608189740cb49cecf6fa8e2322f3a7b4ae7a3fad7999e2ec53127831410e35db_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c82932eac059b32e4c61ee1c091b30bd90cd8e3d1bfc7a3eb79b53a777be2eb6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:e2551f90cfc4e40c012cb48fddc62bb1570b06f96c84fea478135f26ce18777b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:03af29097267d75897d33e333ac18f77085abd9206331a2024f9b9d3e4ecc081_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:3222f5aa9f973d2f1185a9a8add8fd5874e670a783834c7307ffd112f31ab8cd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:b7978acd8fb964dd96840fc351203718113ed54ab7f7dc620d9e51eeaa8bfa77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:c4757e4335af5775c94640ca387e2d1a229886bdc494e908747454656da93e15_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:2a816e8100bbb52a6a7c207c54a6ef2a165fa962510fbe8c106154feaca72bf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:44af579022e8030805340abd4554fe6fb6c60dc11c97def776e7dc18c75e230e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:de68f0e1267e852a7362c00a657a4e1e15465e1b7450c30c8f55404f9471f8f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:f2b76dcd1e6dc0f31b84ace191903fefbb3c3a20c27c1c103bd2cec08de8d2ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:40b697d0c5009b34baf7d328110e3896e8595bacb0052128273a47f2874ea5b4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a42cc69c32897622bc48b7467b6fe0119afd807e7f22f96df95689b3db5801f0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:a9c14d8f5def2c5dd11c85ef3250a2f7853aca9a327addec156aeb383b7d3bef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:fc5a96e1c244eee0e0411b3e5ab0ea0124d97b8d340d7b3801f0a4c118b9017d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6817f98ea6bb5b6774c1bf075d8d1f4175ff2643711698fb3eceed511a452ad1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:801de17436c7c8ee21cbec91ed5649f28b2548a9f3ee13be8c55fc18e259c6aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:988428ebd6e8210dca20b71c014b822fe9fb8884f39a7296fca9ad98e2110477_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c52a9d20c76c7ab1ca14e32a1cd1510ea518217cc6317fe5c509e1151fca1fd5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:6e8695c095be1b8adfb9d0d74603421ce106cff4a5a0e4bef40e80d6117bad44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:8cfec28295f83c33702429cf331cc2db4a20a6698cd5df4d3285afdd4b2fddc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:dbc9287c87f2f2e56e377ea03b82cf21b9bc0a6e7300b299635c55fcdf514096_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f7d728c06eba8a24ccd6f541125c91502ba22f33bcca74e11308af972997eb8d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:31d334255f39a31b6e2395cc2e561946b99dcdba08216c3b760517d77593d6c7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:6804272ffa28ba904c0deb4fdedb1342b9061c87ef57ca94fd87c37bf6b57a90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:84ee4163512917c9d418a3e321b08673add6f5bf54f410d88002596f0090e120_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:916f09702390f3bf95554f5cf305fbfc465190202cc9bd746390698991944825_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:3415ceadcea668d76f763c497a4b6a1e158edd99c7d107138fa31d1aefe36932_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:82d48a8dc821d1c2bb9d278ff047ebdb7758e6cb50d34b595f394e6441a9386b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:85c291eb97d53ef500caf3ba0bc5aae4cde9b822e6d99c147ee48d1166d85e51_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f426e3640a1fe3e25a2dad5366f88b910719c8d92ed349e499ba1c641a043ef9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:70f881bb73369676a66dd4f12851b79dca63ae2e7e71dfb9e04b337f6eb95f92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be5b0a80144da8152f68afef017bcb5b4cdf2c1cda7f392a05bcfe9d79ecbd39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:be694e24dea07fde1f7f9a03c404c5ceb75037ffa7d6dea5d6a1a9a803a98394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:f3653dbce20363e34859f13c51f43e2580ceaba12a5395245cd9e6c2bc2df64f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:a2fda27fdb2ead10b96050e7dff917bed4946e06d0936bf6c15936894ccd5967_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c638b7b59daa3a35d31efbe8f2e7d1cb86f74145dd901e2cd5fe3198b1bd8da5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:d48a85232acae176b92d5afea6a4da8d7d0eff82353adbadd52f756bc2e45817_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:de98334668260fefa386d3530a96bdd5637b19b02add3201e08df9704e6e7718_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:941e5afebdc86f7af45532910039fdc8903add7d596753f1fd5cc97e6d866d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ac340315ba271b5275dbf5e465f73281c25e33624a360c1827cb58ccaf4a7a9c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b59d12f390b1a79440a2b07bd2d505ac659edab2da043323ae6a3da0ab900d0e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:d6c648a981f2a7b44569798b900d61c31903948a5a065523eb87ae64bc380b9e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:027ce730ef47aae2946711d6494bc5cfad38136f2df782b03ac320e36bff7fa4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:66d6760fb952750ec148facf4d73f72a5bcdb0c1ab84d7c5f751e2c16b9829ea_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:76183a83fb421cb80bc34fc5bd1d6a11c5809132befde76bdd31d54958e22751_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:e2462d3f1a3dc501a727d47d649d6091afad941b76f340f20a5030c173038e13_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:1a03c6e3b63677d976fcd178c7375ebcfd89f8f977b2871024194d4a7f797bdb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:5dae32dbc61c101a69112abf7b66d1aaa1207ad9d2443a503f3073e7a25ff5d0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:a2d7a5c0c3a60b4c896da4229738344b399bbd3d728c8698ff02aee709d4e437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f0c4b2117ed6922d3fb6017d7007476c2e07806d6bd68423a210268d976cc539_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:2151bb4ac0d9fc4960a4fd339d6a891982312cde54db5e597965d1e1ab40a71c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8fa3f94155a2f37c33656df242cd25e8f6d877a094a2e6bd050ae77e513961f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:cc2b2e3117c96faf8fa7054445f64622d3a98247b198c10b6f3809df7c53e852_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:ee406d94778bdbf22b7a23eaca84e55929b6b0cb8fce83964fc17469b6ea05c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:5576bc5f6b54e4b7a5cf4ffde4363d1e4f0e6eed082b23029794edc3db1004a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:582e0681d54163a9709637b46f534202fe1bec51d1db3ee06b508ee24c968bff_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:a754c467067c39f9ba350f104fa641d71170b0fc5b16df561b108180a55ecb6f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:aadbfb65673f3a382aa20adf2e89720a8ccbad60b4efe008f81409100a1ca490_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:7146164449bf522e826e3f16627aa78f5e7d5ed405e0fab20ec0345e757e3399_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:9b1f4949c71578c760eeed3a5f10c81b08de8619f12169c5795d6504385bf270_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:a68b3826f489ad07a81d315156259af0c401e23c66f764b430e5f5fe6e4ad8ba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:d5d36ad1e8f7247cbf8146ab5d47cb4ae856a5dc24e5a87c3ae0486aeb8355b7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8a9bd7b09512aa2e14150910dfb5174fbb42920e63256d5a6b2ef91445c9bea4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b238127ad7dfe876bcb193f5a7b6ce94382cdb9c2a44d5a01ea081b1ca0f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:a69f2a2cae0d855a17c9f7e4360ab9bfcb7f3cefc57a4480b88c59246a6e4a69_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bb0fb9907f6d439414b1cdf1b224870405345854538f66e7a4a458829ffe4872_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:4a76e73e40ead33215cc0ddbb45936b4a9295e794297fc141e6b90204eae5e1b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:5a6b1512bbcf66623899fc44a00a2481ebaf65d6450b382738c9cb29b4d5eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8ecaefdc7dbbcbac06695eff2f37d5882bb645429d6a8fd4926092e452950a0d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:f19dcfe1c5f374a18a9b2346a810da6d02a8bdce3b4dd8bad9b081019c81fb08_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:2a643f4da7ffc5a5c3eae17a386ee7c43e2574cc4fd817b28c6b3e20cfbe95a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:599155a050e5d22bbf0aba4d0bb27679a49568d89aca9315cdca16fcbbf484a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f1dc8ac98a64765fa56dce0eb84659cb5ed792a4ea95713f95511ad55d4cf06_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:865327b5cf1a518d85e02ad1e2c39432da12ee44f8fccc0e8bd49a06e9ce676f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:300153a33706533c7d1726c3d2f226fabc508568a56f9db254c6d861a402d4a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:5883cdca714906c9aa61f0e58422b07b1c11620204ce855496ad5e6ca47b4f70_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:608c4d8a77ae520d06928731f86c75148d87debf1f7d3c2829ec59bbdc56354e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c6470711e5713c4d51e8d3090068dce66cde13041c7f617b1264fde0d67e678f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:29257dfeb9da24c78437b230c4e29784a4c2fb6bedabbe9f05045dedfbf26cf2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3959f0727b9f909fb8bd7dfa6e21792dc13672335a495d8af9e0b280ae445257_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b2a2ff8a9b8f77485eb8f9d98063b92ee61ad124fe3a0e839c89cfece61e3a75_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:b7fc748f99b0b5d674ec9427c3e8fab700d9bea5e320f94e9b6311e6c57bc993_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:25d7780febddeb72b92fce8e41aab321b788df54998b5b3fd3a01747678ae1db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:43bb8a1141a68c7f5e396f7810a3358bfdc852270ca7ee137dda89bc7ac7f9e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:632e81bf2f598a684a682e59d75d48c0c2a08fee4ac5becd601c5fa875b1f48b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:7609d9aaca22e1c911a51d0533754527800a059fd1c00e437612740a1d2f1b0d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:21f12601adb2d5572402fa7db5a3ef866151922ea955529de948d4071e1d1396_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:395cbd6a125b752b66816a632ec28f4c9bfed74fe9eea1f17735b2ddcf5f3d9f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5ae9448d67c33c419fdde56a9c6ad899e19b7dc60a5a58b7a7e8c6fc32b10394_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c2db3b95148be50278be5e4c2981a1ce7d70fdb000ffd2d6f6dd5841ca3ca769_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:0c1dab5f1aba9c430771ff37f1dfdd024f1c2625fb641f634d2dc0a73f67c0cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:4779432ad2ac8b0b71220adccef559cc9171d985b256009ec2247ed5e2809645_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:518e0ac59e047ff1b175ed38ac7998480de0f6efd4714b700f9bd6a03ea8d88e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9b8ea068fde13ce4d771e44c98f3971aad3563136401fe8ad605b8cd61df210_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:37f599d644ecc024225240febe66ddb9cab49d98daf0473c33928890bfa6c094_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:3d3b0b1d0b96b90b34931df95c5fc609de6cb537f852e5746d927f42030dbeec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b0b069df9b611a786b9b1463d88e8f2f8084c64c630df028418acff955c13c02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7801d9a3a2d5e36dc54d568179b649e65655927f3b1f03b207462b2d0cf5e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:741d93fe792b965030925ed5954c222572a7a3166398458dee1db2da6e323484_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:8cee5d7e5e1e168c760a68c1bd1482f37a5c7d0cd33e07ba7d7a821bcbb82205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bb5a4cb06492915b26e4caf73807ddc0a779b8f2bc99a70bf4bd2bbb98de32fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d79c56cf138256810aa52ca9a61b6dde816d638cb97dfcaeed3c245d98f96575_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:05da452cb2e06f300ac037dcc823595bcfeaf790d3c7d7996b76c93a9a13d0da_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:1c75fd857e4b519d2fc7913499a3c99e118e2fc074779ddcd54d0942690f1dce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9f792731c4af02f62da40e84cfead28c0fac9795ded2c4d956ae62d8c8f480f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:b931707a7422b95883f3818e22e52611242c76ae622d4bcd0e52a4dbbbd5889a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7f2f37860f557ef3c83cad90783849bd853d4fbde47c809f36e1dd99830b896d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:b405e9f0346284a91e0cdaa5b0dec12bf03e35472ea0ddf509c97ac9d4c62071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:203c3ca222d37176c92d1bf4ab63a88bfd33a9944f2db799c6ec0bd429aacb41_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:78bd48b1485623c0f20cf382e11e1fd559d0e72cafae3d93cb3fd7ecbd699b55_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:14b783cfba6c9c2758bbbd18a9a3963405058bb1b6bcd64b19d21f2406cd3b16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:9417cde5335f9b42cd6eac0207da7dc79ccd6f2a343778bbdda457f174a8cee6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:0f1d4ef4f2661ec4efaa945cf84875f263bfcb20f26ed6d03780ab22c08474a0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:29854598107e6ec803617982f939bf0ff528aa19c8d6649803e7837dc2a777eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:dbd6bec69cb439cf9d6fe6d8c0aee20724db79867cf9fb20371d7f3c7929f96c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:eb68623fa13393e496053a0e7ea98522ce8f12f8841f85d66443435aee90e13c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:23d508da4fa8777ec02e02d9180b85bc81a3fac3464860eaa6e2200fbdfa4663_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:24b9e533a0f2d5424a755d5c6380955de45dd71bae9cd4e00e72f17c7d691031_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2d28f880f134db54300e63fcee1a5996f478f02cea0d60eddc6afc5e9e8762d2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ebd93ceb85111b7fe2c61ea6303f329fbadec673f4f51f9f6a8b51cf579df681_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:39db224ec158356458181e7cdab6cbc613dea82eca9efeb3bbdef2c66f1eeffc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:43d529670f9bca9a14c729db7338152d03194ad19de213e11cf23fb916ba2571_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aa4d0a41536d913b99a0e7c4553fddb79779369b25094d3c6870b3179fa350b8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:e38a54e515c8abb8fa3cb25b105612211dd712fc3898512548608b75ec0978a7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:006d73aaadef5e7e15eeb119e00bf472fbc80bcc456eed0f21aa20ad157a75f2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:03f442794186568299e27cd67e118c5442a50351d438c8f56fb8818d0452eedf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:f661d7bb3bfffddf703607f71318b7956912bc880e3f05b96fcc581a255c3782_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd948064f59a8ebb5a01deb2815f59d983bff98834c9b436cb7ca4458066eeb7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:46119e2eb4052c23c750869caa8372b699aaed65862bc043df79f308ff4ed61f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4e144f224f75b052b4fa95a9945aa2f99e2db82e81150eb8cc514f69619f0c65_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:d9eb910d566531d13f60b0d417e10ceaed55603f3fe15890c93983e800939f73_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:e83ec64b868f0dbbb63c817abe3e2a3e3e20f6054dfdf059973c7ef9fcee951c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:473f4ac18b710fb7a792abd432300f474b9d385d25d01830342b94a06f9f8757_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a5d01c8d036f776c6f180df8f1f83b7d57ca38d41703fb8d6053d0e0630c7120_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:b6f612d4b9a08cb3a2622c7564cf70cd6fa52de69c92d7305db7cb65d3cd4a43_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:f9a111f0d3cfb0579317529f810c82575db31e38549212f541092d5f63223029_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:3865b4a0cf3276df2e55a15522e447935f33ac53a01199b0e46c1d2721aada7f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:45268f719787215ce38e4189d2b288c888532709aadd63dd677dcb39088b91ff_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:816ec12ee11e4133b568820599674bf9399aa9975843e53f6302442ff5e2b004_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b9b9b26966bdf04bbb5afc03d30ca44e7376d1cf7b98d4f8efe19f018f7c1d0a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:08a6a9d7d21dc549d40217945b0e0ffd82be4cce536c8e18c4eb37aa392319b5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2bf2b117d2bdc652f557c7b64817fd90e2cae374ab336759efb6e276b8265232_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:8fa9a3f228f0eaeab63e4a3a496b5948a30c13bb94a3ba8e16b202234f4f2e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:c592a172fd7b99fc977784d62c7c25d1288f616bb66d9ee4ed253085c8491bbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:01b7d8a051975c6c3eca31de4ce15b96dcdc94ad330e4e8e0ef94f8bcab92e16_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:021461dbb22b32ad7b74bcee49403c94386144d603201f246ae23c718adb6ebd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:841d48513c458383ac60994999a244dd026438513b2982ceb004a46f69d28ba2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:9e80754c8ac2a498cbe238b34bc73342dfd7ad70b4578fc38d0761fc7c352491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:123fc690d4e074571d7d4ed6b8767bf36ebaab25d6def57d44ee996111639e83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:25c898824d6343e529053cb83bd26e6c6a8e4233423f4ead7a49340bae05fabb_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5d2d72df72677c8cb7dfe2c822b1d4cc2384c83a971468daeee6c920b49a1a96_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:89b34e76df7e89d3462986b6a520c7dd6778aaa7c66cf3abd1b3c2584fb79965_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:2fe5603534ffe2fec60b82d371ff6e3a57edb828d7b1c6ffe5bdbc1092dd2c40_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:3cb939fdb1d92e733eb638764a3202df0a0b3483d4899d30d4f66ea0df9af263_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:424f53a5da8ed97c5c5c928cf53a5c4f7c1adcbbdf3e3b1ff7973e8e1e787739_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:c3d01ede06a4b78750828881565790cfabe692cf1893ad122a46aea917067c02_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7a13c7d5046f1be44dc3b37498358e1e88b9c66cbdc312413e710bbde71b2a4d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:874b8e4ec120a21257455b681ec5c8522072849b4f0686a5c3b374bd368fa942_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:a8ad04ccc864038fb2b630ee0c900c53d5a22fad595312c9113564f0bafff03f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:d1ccd81e2e7ea56a3d93bc63d003fe7bfa1827971661ae19ae91305480e27152_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:26e17f5062f6df30cc908390e844e6f60b11fa5842a0372111fb968b3e9a2b6e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:573722392eaffc450ff98d71780be229c2fe45c147f80e21dedc43dffefaca3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:6b4b3683c641cff7ecde437768de8a85f34f5c20454434a3a3ee8c2ca3d0638a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:3ab35c75fb239d4c5870fd380325b74d9f335e26399878a2b28754c33d36203e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:494c6e4503ed05c34fe8002d1dd9391fdb6b8500f90ac614f1852d9918d6c216_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:d02db9053e8ea5f8bb4c6ea9b59b2025587727d19c3d682d61d7b9ff9d7e921e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:0765a52cac6d348c4133af2b940be03d0bf56a6c25a1880378f9f043a303f063_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:d427e62a9fa4a4c5706b769830bc27f09907232fad802aaa600772b04d801290_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:ecae72f1b66e6b17c51d945102888f02474f0c1fb23a32c99124877957ac287e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:35ef7ca976f515ce37cd1620dca1241f8d6de5e7e05632f48c34ae55266f5d38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:397ca5c88faa9328d9ed4eb0578947dfd5e4a3ad840e418005d4f7f1ec369138_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:9d699cd1fbf46d3827cf81849108712a6b52349341f4f9348955c44eb441a5e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42099370b8656959f1039452f7308f23c5b53328d0d6f523de006304a52665ca_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4eab3a68692aa578003bf49f56e862ba4d95a6904b250259cd06862fc68175c0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7b6509540008e2ea906442df2440991db7aa7eee9b60fe3c0e547223ceb00135_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f3fcfd376b1df2df56d2a08a143313eb5dfa8a2a3c6fa1f31da71b2762abb318_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:16968eccf3e1ac41cf164149127ade1e96a5f71b7f8b6ec48ae7dbfed316ff92_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:1a53f9e9e4c6f82157d697849d0b2b01f300f6c5f65c47bbb0e94e6319a48c9b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:6e72fffb4ed2454a9c1911abe88ecb1d471037412f289eadec89c9940061ec30_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:dc1babdf384fe719cbbad224710c9c56b9a639682adb64cf0a087a6e949875d8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:1b630d98086b15516eda4219e61ddccd3f9552d6302a061463dd151f549c797f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:20e92e23a1d2ed772361a057ba61a941026c71f474f10fda875203473a72e40e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:544552da31b5847f9b1364152290e8731b78bc0096e25dfc47c55fcd606bae24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:f55d2ff5628a70cbdb5e11ad2ff121d05e4aa115a8eb4d1ff474e1427624d813_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:30774bcc2b64f012740a66044a9452be7000fd4f0d9bc02660e3b51ccec17dad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:698545557cbba385bb9e890db6a60ae9b77ffdbdeae22c69403f3d4df8cbeabf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:785f677d9b6b508b686089b41c46ee01daa8a883e1545e4d96d3485ed657d661_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:efafaeace631ebcb61cd99f120866b111b03eb8d0eeb5d0967d88a174991d9a2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:36b9a3ff889109395f0cabff1bf38107423985839d88efc3152df100253e615d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:37af5ada44fdb7ae05e8f93227bd35b0ca067dd9a2322790de83b2c29784b476_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:40730c899d882171a7c18cdad69cb805192423f77eaee73187afd1242a5c050d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:7bb66d2ef11a8f203d3a7a8c64d87fee65d1b703d42e90159f2fd495b3805449_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:eae0665b0123b5ce34cd991687a9c1499eec7edead3b63a45a3e970b5e7d0a25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:f994212cacd7944faedb9d1fa5e72bebcd4e90a1c648646a40348a54afca1540_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:2fa90e0530d5525af00bf48422bd7ea2af910ead5916d550fa9442a3cab84959_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:632f27af3cdd2e5149dd237beea9b0b9fa97313ddedbe6412317dd5537a06692_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:eb32aff6478f56a5b25c9696a565bb790bb5ef249ce9e8ad457689d1c9c59cc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:906680be4caf0f32fd185ed32175afcd06c6664ebfa7f1eb49cd65ffd6a1daa5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b72358680e2535e553920c6c6448f28bf5e3723a7de078f09b83739e793dadca_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:2170a7b8f175b643e30f1d4ce363e6feba61ee64ab2c93ae5295bfa58dadb91e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:6cf3efeef31e699ebd290e0704eff94224fde1e0014d271bbe7c7af046e0f7d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:210b579ddd62b773154f1f8c34eec4563bf5852b506b1af33a065ba870267b7d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:68556753382d969679cb6efb6e296e2c166de45116b6b40e038feb647e9a34cd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d42e742427aece017671f06d6284516cadca7d22fa40a38f6bc4d1c042dc22c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:fdafa93d3308ef2370263ecf510db9f79c4cf0a1db50c22969620e84a142f77a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:096ad1446c452924e0b0be5e484c44968f9910cff87d9a343a7924db556f6356_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:abe6d2c9fd72d8b076787c2be3b1f3cd5cc3b2a46bc5bea8edd7d47f127d9b56_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:ad7e0843a79888b476216b383ac5c05b4b67faf0f929f95f97ed1ac664ad1531_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:b448543c2a6e788de48344f10ae4ab2c33d834d6ade1a5c6a41d1d48f21674e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:16bcc3ea6c55793eb1618a55d698147878d46ca1ccac9c0c0d09574ff9ee16e4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:6922eb1b857b73a9f98df14723f389cc63c5dd87a59fe0f4516bd46171664d39_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:a326937774714b1f4d34a6ae2db227d8172b5b3700eeea2565e81fa81aec7346_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:d29ded2bbed9d2d18d1813e1394ab597f4161b8ac1b81dcfa9b8ea02e8212c4b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:573575285635e04c057dc446dc213d3ef0afce5a2dfd96af821e50bc8747f8a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:a4e8f1768f909a658bc9e830e3724ee2ad21ca051ca13640b82e13071fb5b5c8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:ae8ab23591d9b678140654053e6ec7b3b46f3a7c81d3c9ab5baa8d911a7644b6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:fc45a0de10a8e35d9f760e1bb5f088263c0a575feae2d31652acb218a91ea82c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:317666f205d0377574d721eea07a66b4293e525663210b32cfb026a7cf641e5e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:5219123f8b622f4f0f957e965c66381e9c4e3da28fc560f3b70e4ec1a6da0b1c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:5ce5ec76788ae331dab3b761c1a562984f932c10a0d9331804a817be6ba4c405_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:647011580f4bf1039f15730cc4a408719a68ad0a5c92f6fd75eab4bd826afa67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:682c2815485a9810b701787c9aefa0608aaf4a6a435cb8627e450fe06c371336_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:c61c4bc62dba2a057e224d7c49bfe3c16869e24808064d063be108cb24469b35_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:0b66eeb97cafc663bb72956708c4233d78571cec4be3b993857317b45c0c8841_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:56901d7646e431117654fbb623cc2cb79c420c8abdf13745a8a8c1c0b69caaf5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b192d58644523233f834ccfc96d4bae8cc07f99b61abb79ba44fb15ec8f2731_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:8fdd9f0cb31237ebb1baa68c7dae527bb7785fa4c439656369e986bb91999568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:009f985618b6ef41d2bcf31fb5c56e4a00d02012ae7733fcf8e2ae1a6ffda7c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8faa43689ee9d9d4d02a058579be7ca5bc0c1e62cf9745635aeb538206854608_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:be0a9f2c8571a037746f52bc72c445690d0a0f097e4ede40a26718e380658437_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:ea34153fd89330635d682d81ab74c6b515f7dae80bda1ae5db375f8b9c75c2f0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:374db1cd736c49baba1bdc2bffdccfc2fd180baf0df2d3b854f6f75bdda9f354_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:60ca0522faaac47bdbc5f6109f69f6c65c909aa773fc58a85a96c4aaf8c1eb55_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:af68522f4e15d37c2d0f629e9a78f1b15c4fa5ac86c8029125e25ed8a7f35527_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:ed4c4d2ea6ab56d83f9756bdd2a9c89edebefddf168cf6d5c55a6d8137abd193_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:059382b9576f9fbc42a0b6e290d4a620454e4c75af7ba283b30ad638761528ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fb5bf5ad342b18eb7320889c8f17cd29269d9e97a9a0e470903829a79379cf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:6950e1296fa76fa7bd1332409ef05bff9152b81188c25decdd39e28f727085f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:f8e1e5949f2fd2d17adb46a3ab4e4621f18404d1be6d35f1fef9289b47580da1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:1b35aa8f444d2cecb638ee884c95a333a9bfeeced4e5093f41d6ca39d96474c0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:64f9cdc6900e2bf8dd75cae92817bb9db937b7b40ff2f799e70fd668fd86a5f8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:883b01ec85d69eccae3fd79b33bf04f46f08f6855f20714fba8dbdb4d70fca17_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d7eb7c677c6d337008ad3020af1996acd539ccf28cc71a26feecc51430a98635_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:c99fbdf4c95a962d915b96a28a327da4b8c83701cd44d2311dd0f35480774aab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cb5d40ddf322730a9cff2b1fcff5f64ae86999ea64273c9e6c5560ca7ea3793c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffbf98da72a00c1e4c7a61c26a9069853f44054a511d38173636e49d3de0428d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ffff534941975b288d2e0b72e492341f486dac50aa284aee012e9f5fd439228f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:23866a2105bbbe9700dc691dabb5bc5e89cd2c698966199b8c0938260e9bdfc5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:31d7ce6fbcfaf6936f46f98681b7c3f4184b8f9e4fe40dd67fdc5284efc94026_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b90a1a4e3d040d2ae36bfcf0e1e337780cac7dbff1e86eb1fe251369b1366b11_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:e9d2f0a25ac222c59baedd513ee2cdf382a42229cafca0b55c4b472f51794588_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a263c21516b03180730e81a39f9a76e16adbf936696c87b1f6334753182ef139_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a3995184ae52586520ba4d51bff2ea6f8b6ae2cf00338a1f5dca242454ce1858_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:791e50ab7f67d6a5d5d64810ba01b78660e312887372b0375809af7f908c4b13_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:cea33c45d2a602361ee51190dc6a44307f0d58e5696ce3f48932241e4ef59668_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:98e11e2b45b85bd49e69b3a72faf0bdd8aab0ba1185ba274d199cbe646a92c2e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:9e16a659b53b01d6c46789c1daf0c31fc27ed996018c6468b3bd625590fc4f2d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:bb9af0d403f9d9ed2b2edf1bb3916ce9e104cade7acc1ac56a288f6596aa8623_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:2dd21a837943066ce8f1cd936819ba1109af96a1f0de6579824b259e32968378_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:619643735b84793e84e9d124a034bc8546fc3b7900cf8c0d86571e0e2ef9e1c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a966b3a351b6a620b22e0d62b2f81c9948c0f8c3119932b804cf30decaea6f00_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:c44125791d55fe0839ef6dbf70a0545ba6e43768617fc3a4e49993564791c9ce_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:0bdbaebf13b686c0e6c5ffa4184a7f113b5582af672e05d3c75dba738635693d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:5e82876a22292370cf23960c5c88135ddd7de88cf34a446e6b5c04a7b25ab4ab_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:96c3c66d28275b1531a5aa28edf0094f098ddf0d1239b83eaa803cb752d29e90_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:b309e7cf3fe4ab4ca542bbf1be0b095e92d9f9cc2f218bbaff685074d5c48c1e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:109b3ff59e37effb273247514f7a49c47530952f4e93da22bb636ffe339df869_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:2926f572b9d73c8cf10aff60ff3189c4107ab071dac34f72a3be01d4d72af169_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:30b36e603ea326849d4e1fec2ac16a43a07cd6f28df4862346cbba2fba3f1ddc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:31517506441bc0ad0123c32e2151c621c40a5ec3c89ab3619e36ff39c0d8d2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:078d9d38a45cf13bce953d254f4965ac9a8f76160ce901f26e117be8487134c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:2018dedc31e8aadf83a5b22930b73373ec32adae8fb02b9bbcc2e3c9336e3739_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:3558b6f9a8bab3e6b7a9880ef673768000508edfba446be67ced556577063c4b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:59d5634e03552a13ccef2505838b5af3bcd256465bf4b54dde74763560a704ac_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:6f975fde75bc3bc89fde4a6b6a3a60c38ab23dab0e109a8d4c4e0f7c129e8d71_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:709d08e85c8f192bc01c4dd65f831e841093cd595726a132c771b15a54fbb111_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:9865166f8650f4f63cc3f4923505e21c2c7694e29558951279813365e2e85e75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:b116aec810e1b849011dd2b38604d82bfcb3686311d5ec33bd3bf427eee6e3ee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:156d64088c5ec18c1775bef056f81d923d0d586ada6d6dc0622f70dc14e55017_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:8e1fe206f71c63e6871b2b396cf3b177d7efeb45f67451a412ecbabca838c63c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:985196fc5d25e7d03aa4b7498d799de5092e58a25b7b18cea3466b6b40c5b80f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e27f00dd057a5bf8df3323abfe59c8ef731093917fd0d8a99d62418da03bac32_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:a79c73c326b5fda1ff1ab136c3d8b6849cc782eb9264ab6b9fe578734f771133_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:b66e8d8a17943ea456b7484d090935fe2c30e815fc4f3f57607b8b704b4fce8d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d17814fc85f464c1f564b64f90f3412f6d545aa32fed30847c0b3a06b931ef7b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:f03b3ad6fb945ed731d913d7f0d8563fd5c32579659f7caf5c927a0f7f56f0db_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6381a11cc8bf1213a57cdd0a45ae207af15f4279fd6207768249dfa4a1e4681e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:6d1e2c053013a8f78f36bc793d8f154a89b4e7b6cb3b855fd2dd70dec99e1216_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ca2526275db080313ba9116806fd043c5c3d6675bc06f575512bd6f04ce1d9c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d5ca11ef4cf3be1c8b37502b89869d1f7e1552484140277264d382ab96c25c62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:5a705d6a936dfe6b10a91006e047b799d78fca6232043106e06935f06d483bd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:6cab29db509bfb03f1876c22030c6eb0fec05b7c96cbd7895247d630c2e389d2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:970180107d90331a270c142fed26c07a803976e81425f0ca2dd516a68264f248_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:e6775cdf105792562edcf65921b19f1657dd3cb00c233fbcc575b298805f5c49_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0c4ea530164ef6d7f5c43ef2c4cd2f297151616f8822293e51ed12e343fd6a66_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:486fa4bbd7d466ea7b8cbf297c1b667be30ed42a46547538be807c9d6da7ba76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:db40e8c742facd8f0ff315c35ad81003fd741847740266490b40f9a79f50649f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e9389e1a0e96c57a770b1c42e7b5c4a28fe75ee8ca5ba255098b9464632ebe43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:04acde724da95e66a3d034269dc14b795172de763ab5635d467edef91796692c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:05029f2db508b03fc466b0be2fe076ba8843a07981f28d28528ccb8dc879a812_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:11b3a2108eeb8c49b9b4957def798b997d10644c10692d95c4004c6e15570f74_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:451db520486d0ede216adf0b7ea63d2d0551df7250efc78fe9e2b2e2d032feed_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:39327300a2b927ca9f75a54a62f55b04736bbc5b5de398cd114908d94eef9b3a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:a552510c42ad2f6c50d204b30bd03d7ae1a141708187ed114db801567586da2c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:c5425ff031368223ec8ef3ca0175d5af2bd16ebc6397d941090d9709a97fdc19_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:ec8f3208713a38aef479a8c736d855fd41772daa839b9b78eda5ce30d8ecd233_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:1392b1f7fd971b96d3a0fe09a49eb71b9db6262563827080f4ef32413aa64402_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:98f84683865e46f63cda03a1ee9bf0a40f7c24ee31441bbfb0b8b355810e1303_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:a500b8fefd4449ddc47447f56843ae66902f7f45562686270d83ab61ba6818bd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:b41bd18a55826cf85ef3eefacdbfc659a04ab502c6a9c18c44fcaf016799e566_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:3abcb5663a19025df1daa714530a96e0031e25a1cc7489bc24cbc6b44f580546_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:476dc868d5d58ea1a187c72a81eb05c668e2f5d6f5b22b0ce0975403291b8339_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:66019227f380989b7940a053eed7166927987561c38b1337d0247d8277629bd7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:c16c71a4c0fbd5eb2bf703fbf131c8493f7bae2ac8a1f893877148a0cab27681_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:0248018ea5a968d50f3a287a3a404fd6ca209ce9a8ac57cc13fadcd40da122b2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2feaec994352be7a7bccee558a0e6ff8391898a29322a891f83882133cd22ce3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:54b75acbb1ba609392c62f1f87e8a213fd38515e9c0bc2eb995e942c499974b2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:fc298b82254f80a94781fe9c579a44b9ee10259606988880aa62ed224e59c938_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:910b8521413a4c7df073ee2395852a7c4961a601af0dbc9f60a668647c6d1a5c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:70ef5c1fccb97e526ecb3cdd5ba58bdbf9e7e14951280a836f7a2859696c04cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:21ee37a130108ba6c3a8da91cfb1f03564747ae65a0d2b40c74c13291cbe6ce8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:576aa4802651fc3ffa38b12af425c18e2d985d1b47ff46fef9cde53df5f15853_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:7750b40f9c8dfa0ec8a097e5a7d6968d30808330ad35a798a2960a6278a17f57_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:cdbc308b4f7bf980764e4cac77a8d4bd50b71d03568a1083dce02e458bdf97ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:030a51988f9dac9fcfa1679683b83a50271f69800f5c342e364e676ed2633827_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:328b5762f600f7d1e6f2ab8fa04921d6090265f307c316513658e83ce0816125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:40f0b33fbb5de522e779c5cf745c16c0362ffd0de969f8c1d3e7207ee1960fc7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:631dec276d1677c697dfc135adae4934bacf3e7d6bafae3aa089d27c414b349a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:081bf5182bf7c0724acbee5e4075fb23b6f8f7c610679fc48a034ca4845c2cd4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1abbc597ab4d94f9c53addc8e1c237648a337a020ce07e34f2c00c7e4b5c8bc5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:5ddc02e8a40b68632a3f64f891a3389a58ea0bd8cb28bae5bd47667a513aabdc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c3cc96a527fe644cf7e2327da8b93d1c7fba9cf21794e2faf82619066028aa21_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:089b1d0c07417543fde8708b0b5bb3088531a9be28a8ae52b4a783a7824f5dc6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ac3f98bfd82a50fdc7e07c83e33febe4c98308e4ae01fcbc678c6111aae2046_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:91515764afc9afa631fa67b34428972fee3f514ad5e3d6b245f3e67721874268_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:ac04292ffbd61e4828de7a84f3ca9af90f377f15d3c5b250f75e7b3748a5a95d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:366d42fa4868cd68d0c132076c2e7d50688878065b7aafe6178d13028c355d75_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:856c0ed4f9e85c9b6981132d996e0ebedbcd91f446f6247be5f8b38685284857_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:85a745d969d1d6f3f8dedc059f97e8e1ca1db03d0301719d58443ce35474bceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:acdb1dfee303eb9e6433fb4c500342213010dad0b199a9e424fd9154940b7ad0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:16843612e4a475e7aa889b8f3d9378f06d608f03810e0f40f9acf8701f3a4b1c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:272517ac7941523a903c8bef99f450f6e98c0eb372e92d8dfc1755431fa4d4cc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:3f74566925575af5b1e48ac1cfa786357d98c7fd4a8eecf650c4c134a2b54f1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:ed5b1a58cc80a29752501cb2f56d62e5e4bb5f036689569b30abbe036a9f762c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0854cf10b74c63c939072d0593e61af90d506e819e506d3622f79f0dcd948c8c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:0e259671ee2d3d35998410280cdd92375d023a8ead180957c01762d639d56bf4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:83fdee5f87de3ced38606a51f8b0a034c3a86e9100db565bfbf0f130908494c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c6ec48bae66cb8a5eac966147f0cceb755cb3240bedaffafb806cb116b697f97_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37ca2bf60f03bc7d6a4eaeed956df031f342b19213924ad7c7506e2616c1c9bf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6624c51ff0ea297cc8d3d9b50595a645f3df4fbcd0b0501720ae1d94590bf27d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:96f483f8b4f035dfcb290941f35179b2e2e69aa80def96384e4683d20a959361_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:cb22892b5bd95a5efb043ea09e3f103c5152eb554e5416133e9a34f509aab008_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5070604aabbf97218fc5b2060939db8c0bf0bcb4f2930e3ce21c774c769139ad_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:50e4376281dff232327046a6ca6492afc04175d645e41ffab95fadeddec80c7e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:60be9a74c5398ada6d18b4ecaceb37b1376a5bebb13778f69fa8c5178f3e8630_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:f608b79c0360a6632aaa9a27ced76e72f903b8035417f0db20e14d03a9e8b662_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:02e397ed4c47b5df2ac26a5d97c1ac922998949423ad9de9029cc6632e5f1e67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7200e77f44108ee3dae573d03226b08edb2595d64fec8c4f99b82d92439eb849_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:864d2c8d1289b9bb68dc10b333709e078112787584ed53bd7e8d13fbf05a23f1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:cd04e9a815ab2b327f90457ee9154229e730e5a8295385c7a1bf89daba085ac2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:5c2bcfe2bec9faee69d0abfd2a84b0a2d573d0b942ed1318010b8ab093f98e7d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6cd5ee5eb6c87c60bc8557bcff90467816357cc1400c0402912c33aaf7dd155c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:6fa36167a90c21926246308b58006b5c5c13588a4d9d08db60ecf35f249c78b4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:ec2576a3703da926c1de508e590530bf8cb811898b56bce13bb514384ee31eba_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:16ac159a9cb2db0cdc8542c646127f12098477cf64d415fe74f1dcf732fdd55b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:556b0820e6ed348ee9457381b35e51f871d26a531433d7080dd39c29d834ebf0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:bd0bebe1c558084d655662aefb03c9c95458d499b4d89db687ee9cda09f935c4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:ff504612e9a06944933f275a3431019b4ba3fb9d805b5938b006814bf6277777_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:46d6c5e6dcb78fa9fbb59efde06c9b0d42fdc7286dda0ac2ba85aafe55d26665_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5716163f8411aa65693e5c683da4d720eccb5c43b98591500f134565b6ed9794_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f48222d280f71c3ec3ea60fe26446f0f3149928d8c7ba817ff06cf87280c2296_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:f7a7a865ce42f9dfe8eb75b2a7668b1b4760f3f24f9117a4f8f500620471c7f6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:0ec07d543f846d6b7b9d4dd03a2a75467845721730c5ced9075440bb3f417b35_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:4d8449d5b624204cd7e83bee7c631edb18b60cd50c2fac1de2e2c3234cf10812_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:93d92571f6cbe933f97fa8cd9da2cc1f6dc158a41eadb01980cb0f90da4d7a90_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:fe54e52f7b49f2376c4bbc97ffb5cf2066e6b0d4a887d57972a7be3c6f7b4205_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:70d5d720006d5910b95dd8050d8539ef084c6a435fb4e961b5903915bb88c49a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:ad18a9d658c72fe204d844a61630e9ff2fa75f45f933c2337395df7dfe521c59_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e50c5595d577cd006b6f7db08ec1c9419aeaf5af7e2d611798966c1802a18051_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fd34f549b64351ee28b2a5663ad3c540b811640938b6b5ba591162758fb1a550_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6399626dd50a376adde7256f444a054390062232076838a502df55b76db97a70_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:6e76895192e5a44fb444c78b370a3d30db12cae5fdcfefdcb842d20df67341f7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:a7b898b62cfbeb61bc2f6811c0b51f44acd4632464a6825b0105c022c6cad584_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:ea846710b6264a0401586fd8c7a1cbaeb1a157acf92ae6c7003e84b36e67ffc8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:510016b6196163e3489fac067b1213b63761d3d6162cf9135cebb62bf88bd410_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8d221df7b11a8555cedc7fd2b056742d4010a3356c413c97ea44d7c73ec2bc20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:9ff01f3786d62273c663727426e2eaacf1e6aaf2648af748f876633d900ec0e2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:fbe5ce00366769987b557f60d2eb7951830eb607643f8fda84a78f9c8dd07378_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2ea36f1783a8b02086c3851744473a8e14bbc2a22208cf2a647b2884f05cf57e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:7b00e4ed17f28c318b8984db86217d1be4fcf6dfda6e7eff5c480124e1cacc22_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:d38d7e86a27e15fd4d36cbdff998f4cfb68f3dcaa02036e4c10278b19099aa54_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:fa017a935f766758e50f9fb81bbee4479cc1169db333bafef27fb116a9fefb05_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:97d45413fbbeed9e1be2f716b25ffc9d2daaa6144952899e8e524175054cf57f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9f3710096e74aef44ec5cd3116ac7bd1ac415db7e036cd5f72c3286bb2bc9680_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:738688edcc492292cb12048f60b4900e2814ed19e0fb8b0b7bd70c8aecedd154_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:7ba650721d26baf471a03b3fe46c291d69b846899a38b11b8aefcfc432987cad_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:57b661f0054879f0b13aa43bb84c57e33cde0f77468b69133340af16c444b65e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:b83708d302587d436200db0f545393e915caf1418c0aaf90f21010147fae17fd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:3825c1ae7eabc87643d997678aa2031f3cbe2280c8852697cf71c9f2bd23ac2c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:a69c08641b9c2ead8eef1d68ff7c392d52f58db35beb1c6ea00042438083c6c1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:617c5f61198935ac89e93019ef0f6d204fe853b1c9a30ffe81c5c2a1cf75aea9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:83099ccb8d37c277dd05635086339c41de0299c2dbf4d8d1b519e86971c1a619_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ebb10a646c3c36fbab06c9ed6b27819391073f2f5094ce800bc06033bad4cb9e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:ffc76cbb24f94f01a2819dc1fb3b31e2ebec9aace252d68233b3744a96bca4f7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:01765b4eeac075bb32e906319d7d58d8ecffaa21beb5d627f1a799d871ce2675_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3c6bea0d395276b55dcd5f0bd0b01cc4938c991e713b6d49d09c05fb2bc81acb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:c2f4ddeb0a4aca8193c49c2de2782378a2d3b9b21973c868d29c35eb938be6e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:f94654d7c18bac898908ac0e3f93f38162f641edc5a9c7806c2bb4c9461a7f3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0c52e8d91d67b1ce7e506baf7de06fe976a71fa8a2effa66b72e55abe9bac8ab_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6226457bdce83bce3296da20d4fdef3ff63dcdb9816ac20269f866f7dad171de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:de7caa1741c2f5076e16640795cb7b1fe6df3d4feae57dd02974329b4dd350d7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:f0b137139b1a943ceceea32f59a40196a00b4c352afaef5de04094085f986b10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:41a110572ad2828bca64ad783b3e9b4a99b2253bab4cab8ef8117cae0bc86e23_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:9a10f7535d75b61b3ae599c338838e75ec3c7217ba1e22be093a86dfb2e510ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:a587949670e43067573083eb182aa3f6471ee673c93f04c4e72250a4354e12eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:b22e6536e9265b4df90abd68d39170ec65092565fe9a16dc54c1505ff01cd63f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:86951de0bd8444d0cf757610ceac5f5f186c27b9aabb0fb849522dc80d7ebfa8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd0ce17565fcab2d4131ebbde783adba92598032ade6b0bf20d40291f9de447b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e4285fc6b48788e44cb0533ceb007d71ed214746828031f850e3aa689b1e85f2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:e9f27e96599498a1adda6b6d71a30b32767a8964700b472d98ad3a8b8b57f3f3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:46e46f3cd95f0a331d5e94aea3d165a887ef8fffac7f39ef99baa7a924578c9a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:6dcdf3618e74b54146cc75125c942e18a0fa327e5ed863372f9608ff02ec7244_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:9df581d7345fbe741380022df4fd127efb1304871dfe753324febae550f3e33c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:eafb2b6877e6c5bf8973d87b20a2a77890b26b212fbf56ed28c5da5790c9506f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:5fc30b67e8bfdf362f66731fb6cc778885007eeda231ab04de46daf8cda63e3e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:a51afb43106adf928033f720e1b1820a0c8c4fd46d12613f9add78dff9a874ce_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e2d494f5cec52a8816f1dd4e4d444a48ee7a6fe19639835e80fcd063fd0aebd7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:e8c532b63c80e36c3be43b4e0de1f21cbdaee3abf0a44f8f43e50fa4a610322c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:24071c862c0984aef61b078e9aba15262a17aa793715e72839a960596b610472_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8dfa4078ed4c73eea3f36e100a8e52492cb815b53952295dd9c799b57cf2da77_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:9508cd2559637567bd70b6049579d14cb54d4faf80f26af654854fec5a1ab767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:f0032f766db65ef438fc94b27551fb9a96ac1bb0db6c3f18edcc1f1ceb20f20a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:415567baf4508f84b56db852290f1d2d33c9dc173456f02946c19c347f9aa9a2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8121b87f460fd30c33209db623585f76b9750b8d47be2f20128c0b878820e027_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8a9b3dbc4c00053c93d2799bcd7da27df6cfb5400033c694348110a038f1665f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f468a41441793969a502e6a7155d35d35210dfe771967800f8dd04a942fb4301_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:15e3f05f2d76887c2e4208575ed18981529dceadfb0889dfbf8888dd82d6e03c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:59d7289cb9a32e9d26842eb4a3c4131404d83df6269b6f26d6ddf985d47c84c9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:7ca2946a8a24ce616461e96fa5a0069e336ef1d41191909608cb020722962132_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:be69700d7e1a73f54cc62b19801da71b373d244b7cea81af0ceeddd668e4aec5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:3f27ef7feb9e8fb27827e6853e6dd35f9bf85c346e596d4a78258b40aa0f9f51_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:5030186d660db595178b3db8acabc3118042b8d06d647516a1697f779662832e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:70cecf6c29476d40c9a70c8423a7d625290bd2415248a5207773eaaa867c0a19_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:f8782af03659e32d2015c2da9db11af421c8bf68e01876508e374ad6a4ccdac0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:318c7c070157510bbd48838023dd51587f3bf73621d5c04d65758bb78a5f0bcc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:361e50bfb3e7374a3583aa310a53688b630441701f78b201e7f8d818a5b5b359_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:d7d35b15c1ab37459e248c18475d8ac5c60ef9b901055c7c025bc5f08e955251_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f2074231eee42a2e88f540965aad3d12b6e41ccb015fcbf6ba1ab06ab925db53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:19c0f72bae05ba0cff530402b04adbbbf47a4fc817a858c8942e63938f492e2a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b88a3d265ed7184b02f5e19aa6b4040b5f3f66f4662b0e033fe63ca1d67071d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:bcf89a8ad2a90d3eccdb9a509d6f631ea14bc9b029a0bca9d17c5559f891a78c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:2c86ffff87e1135acc51e1235dc47a7fb427cfb334ff29186273fc852d07d30b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:9538b51ffdce519f2be63117b6cad3e5e7850607d57bb02e69350884c9c6b9c0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:cc6aec46ffe24b043b34652ae712b29c2c3032178184269c15fc9296c227ee9a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:0f4b61ee92bdf77487cb6861cc27cf869e3ca474b2cd2330d31e3ed304eeb4d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:d227525bc5279432c4363634335ab9045958cad0ea9bc0e1028fba8d3669a0b0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:dd3ffd70057c3c2c6a4335b5cc7191651648b293851a8cd1b4f15f948f3bbab7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:ee7bcbcad2622b2850c5c3ad144d7f211e07b7fc3b2a4ea5038f0013254bdb0c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:759c0ad69f2e7468396dc861a326d4b8136d4b0eb0ce2853667a5d4bf3164149_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:8466179c973125aea51748808c658b9d3f58266c57808c9df53414fc59e451bf_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:90c256bcbee419d51cc1e73087077bc9a168b04a8e17fd604cf78815c84348f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:e378ff17f918f2499d3d4dbfd739214d738708b4c121a72e77a97fc5f2a9cfbf_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.