Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2022-35949 (GCVE-0-2022-35949)
Vulnerability from cvelistv5
- CWE-918 - Server-Side Request Forgery (SSRF)
► | URL | Tags | |||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-03T09:51:59.443Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_transferred" ], "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" }, { "tags": [ "x_transferred" ], "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" }, { "tags": [ "x_transferred" ], "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" } ], "title": "CVE Program Container" }, { "metrics": [ { "other": { "content": { "id": "CVE-2022-35949", "options": [ { "Exploitation": "poc" }, { "Automatable": "yes" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2025-04-22T15:39:52.001564Z", "version": "2.0.3" }, "type": "ssvc" } } ], "providerMetadata": { "dateUpdated": "2025-04-22T17:42:40.255Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" } ], "cna": { "affected": [ { "product": "undici", "vendor": "nodejs", "versions": [ { "status": "affected", "version": "\u003c= 5.8.1" } ] } ], "descriptions": [ { "lang": "en", "value": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call." } ], "metrics": [ { "cvssV3_1": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "NONE", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "version": "3.1" } } ], "problemTypes": [ { "descriptions": [ { "cweId": "CWE-918", "description": "CWE-918: Server-Side Request Forgery (SSRF)", "lang": "en", "type": "CWE" } ] } ], "providerMetadata": { "dateUpdated": "2023-01-18T00:00:00.000Z", "orgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "shortName": "GitHub_M" }, "references": [ { "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" }, { "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" }, { "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" } ], "source": { "advisory": "GHSA-8qr4-xgw6-wmr3", "discovery": "UNKNOWN" }, "title": "`undici.request` vulnerable to SSRF using absolute URL on `pathname`" } }, "cveMetadata": { "assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa", "assignerShortName": "GitHub_M", "cveId": "CVE-2022-35949", "datePublished": "2022-08-12T00:00:00.000Z", "dateReserved": "2022-07-15T00:00:00.000Z", "dateUpdated": "2025-04-22T17:42:40.255Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "vulnerability-lookup:meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2022-35949\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2022-08-12T23:15:07.970\",\"lastModified\":\"2024-11-21T07:12:01.970\",\"vulnStatus\":\"Modified\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\\\"undici\\\") undici.request({origin: \\\"http://example.com\\\", pathname: \\\"//127.0.0.1\\\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.\"},{\"lang\":\"es\",\"value\":\"undici es un cliente HTTP/1.1, escrito desde cero para Node.js.\\\"undici\\\" es vulnerable a un ataque de tipo SSRF (Server-side Request Forgery) cuando una aplicaci\u00f3n toma la **user input** en la opci\u00f3n \\\"path/pathname\\\" de \\\"undici.request\\\". Si un usuario especifica una URL como \\\"http://127.0.0.1\\\" o \\\"//127.0.0.1\\\" \\\"\\\"js const undici = require(\\\"undici\\\") undici.request({origin: \\\"http://example.com\\\", pathname: \\\"//127.0.0.1\\\"}) \\\"\\\"\\\" En lugar de procesar la petici\u00f3n como \\\"http://example.org//127.0.0.1\\\" (o \\\"http://example.org/http://127.0.0.1\\\" cuando es usada \\\"http://127.0.0.1\\\"), en realidad procesa la petici\u00f3n como \\\"http://127.0.0.1/\\\" y la env\u00eda a \\\"http://127.0.0.1\\\". Si un desarrollador pasa la entrada del usuario en el par\u00e1metro \\\"path\\\" de \\\"undici.request\\\", puede resultar en un _SSRF_ ya que asumir\u00e1 que el nombre del host no puede cambiar, cuando en realidad puede cambiar porque el par\u00e1metro path especificado es combinado con la URL base. Este problema ha sido corregido en \\\"undici@5.8.1\\\". La mejor mitigaci\u00f3n es comprender la entrada del usuario antes de pasarla a la llamada \\\"undici.request\\\".\"}],\"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:L/I:N/A:N\",\"baseScore\":5.3,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"LOW\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":1.4},{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H\",\"baseScore\":9.8,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":3.9,\"impactScore\":5.9}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-918\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:nodejs:undici:*:*:*:*:*:node.js:*:*\",\"versionEndIncluding\":\"5.8.1\",\"matchCriteriaId\":\"CB5541CA-AC2D-4CFD-82A9-CF1FFEEFBB08\"}]}]}],\"references\":[{\"url\":\"https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Patch\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/nodejs/undici/releases/tag/v5.8.2\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Release Notes\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Exploit\",\"Mitigation\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Patch\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/nodejs/undici/releases/tag/v5.8.2\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Release Notes\",\"Third Party Advisory\"]},{\"url\":\"https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\",\"tags\":[\"Exploit\",\"Mitigation\",\"Third Party Advisory\"]}]}}", "vulnrichment": { "containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895\", \"tags\": [\"x_transferred\"]}, {\"url\": \"https://github.com/nodejs/undici/releases/tag/v5.8.2\", \"tags\": [\"x_transferred\"]}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2024-08-03T09:51:59.443Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2022-35949\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"poc\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2025-04-22T15:39:52.001564Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2025-04-22T15:39:53.294Z\"}}], \"cna\": {\"title\": \"`undici.request` vulnerable to SSRF using absolute URL on `pathname`\", \"source\": {\"advisory\": \"GHSA-8qr4-xgw6-wmr3\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 5.3, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"MEDIUM\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N\", \"integrityImpact\": \"NONE\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"LOW\"}}], \"affected\": [{\"vendor\": \"nodejs\", \"product\": \"undici\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c= 5.8.1\"}]}], \"references\": [{\"url\": \"https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3\"}, {\"url\": \"https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895\"}, {\"url\": \"https://github.com/nodejs/undici/releases/tag/v5.8.2\"}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\\\"undici\\\") undici.request({origin: \\\"http://example.com\\\", pathname: \\\"//127.0.0.1\\\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-918\", \"description\": \"CWE-918: Server-Side Request Forgery (SSRF)\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2023-01-18T00:00:00.000Z\"}}}", "cveMetadata": "{\"cveId\": \"CVE-2022-35949\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2025-04-22T17:42:40.255Z\", \"dateReserved\": \"2022-07-15T00:00:00.000Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2022-08-12T00:00:00.000Z\", \"assignerShortName\": \"GitHub_M\"}", "dataType": "CVE_RECORD", "dataVersion": "5.1" } } }
wid-sec-w-2022-1933
Vulnerability from csaf_certbund
Notes
{ "document": { "aggregate_severity": { "text": "hoch" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "Red Hat Satellite dient als zentrale Stelle f\u00fcr das Management, die Verteilung von Updates in Netzwerken mit Red Hat Enterprise Linux Systemen.\r\nRed Hat Enterprise Linux (RHEL) ist eine popul\u00e4re Linux-Distribution.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in Red Hat Satellite und Red Hat Enterprise Linux ausnutzen, um einen Denial of Service oder nicht spezifizierten Angriff durchzuf\u00fchren.", "title": "Angriff" }, { "category": "general", "text": "- UNIX\n- Linux", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2022-1933 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2022/wid-sec-w-2022-1933.json" }, { "category": "self", "summary": "WID-SEC-2022-1933 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2022-1933" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2023:3645 vom 2023-06-16", "url": "https://access.redhat.com/errata/RHSA-2023:3645" }, { "category": "external", "summary": "RHSA-2022:7276 - Security Advisory vom 2022-11-01", "url": "https://access.redhat.com/errata/RHSA-2022:7276" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2022:7313 vom 2022-11-02", "url": "https://access.redhat.com/errata/RHSA-2022:7313" } ], "source_lang": "en-US", "title": "Red Hat Satellite und Red Hat Enterprise Linux: Mehrere Schwachstellen", "tracking": { "current_release_date": "2023-06-18T22:00:00.000+00:00", "generator": { "date": "2024-08-15T17:37:26.031+00:00", "engine": { "name": "BSI-WID", "version": "1.3.5" } }, "id": "WID-SEC-W-2022-1933", "initial_release_date": "2022-11-01T23:00:00.000+00:00", "revision_history": [ { "date": "2022-11-01T23:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2022-11-02T23:00:00.000+00:00", "number": "2", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2023-06-15T22:00:00.000+00:00", "number": "3", "summary": "Neue Updates von Red Hat aufgenommen" }, { "date": "2023-06-18T22:00:00.000+00:00", "number": "4", "summary": "Korrektur Produktzuordnung" } ], "status": "final", "version": "4" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux Advanced Cluster Management \u003c 2.6.2", "product": { "name": "Red Hat Enterprise Linux Advanced Cluster Management \u003c 2.6.2", "product_id": "T028198", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:advanced_cluster_management__2.6.2" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux Advanced Cluster Management \u003c 2.4.8", "product": { "name": "Red Hat Enterprise Linux Advanced Cluster Management \u003c 2.4.8", "product_id": "T028199", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:advanced_cluster_management__2.4.8" } } } ], "category": "product_name", "name": "Enterprise Linux" }, { "category": "product_name", "name": "Red Hat OpenShift Service Mesh \u003c 2.2.7", "product": { "name": "Red Hat OpenShift Service Mesh \u003c 2.2.7", "product_id": "T028200", "product_identification_helper": { "cpe": "cpe:/a:redhat:openshift:service_mesh__2.2.7" } } } ], "category": "vendor", "name": "Red Hat" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-25858", "notes": [ { "category": "description", "text": "Es existiert eine Schwachstelle in Red Hat Satellite in der erweiterten Cluster-Verwaltung. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um einen Denial-of-Service-Zustand zu verursachen." } ], "release_date": "2022-11-01T23:00:00.000+00:00", "title": "CVE-2022-25858" }, { "cve": "CVE-2022-35948", "notes": [ { "category": "description", "text": "In Red Hat Enterprise Linux besteht eine Schwachstelle im Advanced Cluster Management, die bisher noch nicht im Detail beschrieben und ver\u00f6ffentlicht wurde. Der Fehler besteht, wenn nicht \u00fcberpr\u00fcfte Eingaben als Request Header innerhalb des `content-type` Headers verwendet werden, was zu einer CRLF Injection f\u00fchrt. Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um nicht spezifizierte Auswirkungen zu verursachen." } ], "release_date": "2022-11-01T23:00:00.000+00:00", "title": "CVE-2022-35948" }, { "cve": "CVE-2022-35949", "notes": [ { "category": "description", "text": "In Red Hat Enterprise Linux besteht eine Schwachstelle im Advanced Cluster Management, die bisher noch nicht im Detail beschrieben und ver\u00f6ffentlicht wurde. Der Fehler besteht in der Komponente undici aufgrund einer Server-Side Request Forgery (SSRF). Ein entfernter, anonymer Angreifer kann diese Schwachstelle ausnutzen, um nicht spezifizierte Auswirkungen zu verursachen." } ], "release_date": "2022-11-01T23:00:00.000+00:00", "title": "CVE-2022-35949" } ] }
fkie_cve-2022-35949
Vulnerability from fkie_nvd
9.8 (Critical) - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
▶ | URL | Tags | |
---|---|---|---|
security-advisories@github.com | https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895 | Patch, Third Party Advisory | |
security-advisories@github.com | https://github.com/nodejs/undici/releases/tag/v5.8.2 | Release Notes, Third Party Advisory | |
security-advisories@github.com | https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3 | Exploit, Mitigation, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895 | Patch, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/nodejs/undici/releases/tag/v5.8.2 | Release Notes, Third Party Advisory | |
af854a3a-2127-422b-91ae-364da2661108 | https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3 | Exploit, Mitigation, Third Party Advisory |
{ "configurations": [ { "nodes": [ { "cpeMatch": [ { "criteria": "cpe:2.3:a:nodejs:undici:*:*:*:*:*:node.js:*:*", "matchCriteriaId": "CB5541CA-AC2D-4CFD-82A9-CF1FFEEFBB08", "versionEndIncluding": "5.8.1", "vulnerable": true } ], "negate": false, "operator": "OR" } ] } ], "cveTags": [], "descriptions": [ { "lang": "en", "value": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call." }, { "lang": "es", "value": "undici es un cliente HTTP/1.1, escrito desde cero para Node.js.\"undici\" es vulnerable a un ataque de tipo SSRF (Server-side Request Forgery) cuando una aplicaci\u00f3n toma la **user input** en la opci\u00f3n \"path/pathname\" de \"undici.request\". Si un usuario especifica una URL como \"http://127.0.0.1\" o \"//127.0.0.1\" \"\"js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) \"\"\" En lugar de procesar la petici\u00f3n como \"http://example.org//127.0.0.1\" (o \"http://example.org/http://127.0.0.1\" cuando es usada \"http://127.0.0.1\"), en realidad procesa la petici\u00f3n como \"http://127.0.0.1/\" y la env\u00eda a \"http://127.0.0.1\". Si un desarrollador pasa la entrada del usuario en el par\u00e1metro \"path\" de \"undici.request\", puede resultar en un _SSRF_ ya que asumir\u00e1 que el nombre del host no puede cambiar, cuando en realidad puede cambiar porque el par\u00e1metro path especificado es combinado con la URL base. Este problema ha sido corregido en \"undici@5.8.1\". La mejor mitigaci\u00f3n es comprender la entrada del usuario antes de pasarla a la llamada \"undici.request\"." } ], "id": "CVE-2022-35949", "lastModified": "2024-11-21T07:12:01.970", "metrics": { "cvssMetricV31": [ { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "NONE", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 1.4, "source": "security-advisories@github.com", "type": "Secondary" }, { "cvssData": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "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:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9, "source": "nvd@nist.gov", "type": "Primary" } ] }, "published": "2022-08-12T23:15:07.970", "references": [ { "source": "security-advisories@github.com", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" }, { "source": "security-advisories@github.com", "tags": [ "Release Notes", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" }, { "source": "security-advisories@github.com", "tags": [ "Exploit", "Mitigation", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Release Notes", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" }, { "source": "af854a3a-2127-422b-91ae-364da2661108", "tags": [ "Exploit", "Mitigation", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" } ], "sourceIdentifier": "security-advisories@github.com", "vulnStatus": "Modified", "weaknesses": [ { "description": [ { "lang": "en", "value": "CWE-918" } ], "source": "security-advisories@github.com", "type": "Primary" } ] }
suse-su-2022:3196-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs16", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs16 fixes the following issues:\n\n- CVE-2022-35949: Fixed SSRF when an application takes in user input into the path/pathname option of undici.request (bsc#1202382).\n- CVE-2022-35948: Fixed CRLF injection via Content-Type (bsc#1202383).\n- CVE-2022-29244: Fixed npm pack ignores root-level .gitignore and .npmignore file exclusion directives when run in a workspace (bsc#1200517).\n- CVE-2022-31150: Fixed CRLF injection in node-undici (bsc#1201710).\n\nBugfixes:\n\n- Enable crypto-policies for SLE15 SP4+ and TW (bsc#1200303)\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2022-3196,SUSE-SLE-Module-Web-Scripting-12-2022-3196", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2022_3196-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2022:3196-1", "url": "https://www.suse.com/support/update/announcement/2022/suse-su-20223196-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2022:3196-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-September/012190.html" }, { "category": "self", "summary": "SUSE Bug 1200303", "url": "https://bugzilla.suse.com/1200303" }, { "category": "self", "summary": "SUSE Bug 1200517", "url": "https://bugzilla.suse.com/1200517" }, { "category": "self", "summary": "SUSE Bug 1201710", "url": "https://bugzilla.suse.com/1201710" }, { "category": "self", "summary": "SUSE Bug 1202382", "url": "https://bugzilla.suse.com/1202382" }, { "category": "self", "summary": "SUSE Bug 1202383", "url": "https://bugzilla.suse.com/1202383" }, { "category": "self", "summary": "SUSE CVE CVE-2022-29244 page", "url": "https://www.suse.com/security/cve/CVE-2022-29244/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-31150 page", "url": "https://www.suse.com/security/cve/CVE-2022-31150/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35948 page", "url": "https://www.suse.com/security/cve/CVE-2022-35948/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35949 page", "url": "https://www.suse.com/security/cve/CVE-2022-35949/" } ], "title": "Security update for nodejs16", "tracking": { "current_release_date": "2022-09-08T08:35:42Z", "generator": { "date": "2022-09-08T08:35:42Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2022:3196-1", "initial_release_date": "2022-09-08T08:35:42Z", "revision_history": [ { "date": "2022-09-08T08:35:42Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-8.9.1.aarch64", "product": { "name": "corepack16-16.17.0-8.9.1.aarch64", "product_id": "corepack16-16.17.0-8.9.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-8.9.1.aarch64", "product": { "name": "nodejs16-16.17.0-8.9.1.aarch64", "product_id": "nodejs16-16.17.0-8.9.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-8.9.1.aarch64", "product": { "name": "nodejs16-devel-16.17.0-8.9.1.aarch64", "product_id": "nodejs16-devel-16.17.0-8.9.1.aarch64" } }, { "category": "product_version", "name": "npm16-16.17.0-8.9.1.aarch64", "product": { "name": "npm16-16.17.0-8.9.1.aarch64", "product_id": "npm16-16.17.0-8.9.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-8.9.1.i586", "product": { "name": "corepack16-16.17.0-8.9.1.i586", "product_id": "corepack16-16.17.0-8.9.1.i586" } }, { "category": "product_version", "name": "nodejs16-16.17.0-8.9.1.i586", "product": { "name": "nodejs16-16.17.0-8.9.1.i586", "product_id": "nodejs16-16.17.0-8.9.1.i586" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-8.9.1.i586", "product": { "name": "nodejs16-devel-16.17.0-8.9.1.i586", "product_id": "nodejs16-devel-16.17.0-8.9.1.i586" } }, { "category": "product_version", "name": "npm16-16.17.0-8.9.1.i586", "product": { "name": "npm16-16.17.0-8.9.1.i586", "product_id": "npm16-16.17.0-8.9.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs16-docs-16.17.0-8.9.1.noarch", "product": { "name": "nodejs16-docs-16.17.0-8.9.1.noarch", "product_id": "nodejs16-docs-16.17.0-8.9.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-8.9.1.ppc64le", "product": { "name": "corepack16-16.17.0-8.9.1.ppc64le", "product_id": "corepack16-16.17.0-8.9.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-16.17.0-8.9.1.ppc64le", "product": { "name": "nodejs16-16.17.0-8.9.1.ppc64le", "product_id": "nodejs16-16.17.0-8.9.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-8.9.1.ppc64le", "product": { "name": "nodejs16-devel-16.17.0-8.9.1.ppc64le", "product_id": "nodejs16-devel-16.17.0-8.9.1.ppc64le" } }, { "category": "product_version", "name": "npm16-16.17.0-8.9.1.ppc64le", "product": { "name": "npm16-16.17.0-8.9.1.ppc64le", "product_id": "npm16-16.17.0-8.9.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-8.9.1.s390x", "product": { "name": "corepack16-16.17.0-8.9.1.s390x", "product_id": "corepack16-16.17.0-8.9.1.s390x" } }, { "category": "product_version", "name": "nodejs16-16.17.0-8.9.1.s390x", "product": { "name": "nodejs16-16.17.0-8.9.1.s390x", "product_id": "nodejs16-16.17.0-8.9.1.s390x" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-8.9.1.s390x", "product": { "name": "nodejs16-devel-16.17.0-8.9.1.s390x", "product_id": "nodejs16-devel-16.17.0-8.9.1.s390x" } }, { "category": "product_version", "name": "npm16-16.17.0-8.9.1.s390x", "product": { "name": "npm16-16.17.0-8.9.1.s390x", "product_id": "npm16-16.17.0-8.9.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-8.9.1.x86_64", "product": { "name": "corepack16-16.17.0-8.9.1.x86_64", "product_id": "corepack16-16.17.0-8.9.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-8.9.1.x86_64", "product": { "name": "nodejs16-16.17.0-8.9.1.x86_64", "product_id": "nodejs16-16.17.0-8.9.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-8.9.1.x86_64", "product": { "name": "nodejs16-devel-16.17.0-8.9.1.x86_64", "product_id": "nodejs16-devel-16.17.0-8.9.1.x86_64" } }, { "category": "product_version", "name": "npm16-16.17.0-8.9.1.x86_64", "product": { "name": "npm16-16.17.0-8.9.1.x86_64", "product_id": "npm16-16.17.0-8.9.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 12", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:12" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-8.9.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64" }, "product_reference": "nodejs16-16.17.0-8.9.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-8.9.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le" }, "product_reference": "nodejs16-16.17.0-8.9.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-8.9.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x" }, "product_reference": "nodejs16-16.17.0-8.9.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-8.9.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64" }, "product_reference": "nodejs16-16.17.0-8.9.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-8.9.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64" }, "product_reference": "nodejs16-devel-16.17.0-8.9.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-8.9.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le" }, "product_reference": "nodejs16-devel-16.17.0-8.9.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-8.9.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x" }, "product_reference": "nodejs16-devel-16.17.0-8.9.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-8.9.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64" }, "product_reference": "nodejs16-devel-16.17.0-8.9.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-8.9.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch" }, "product_reference": "nodejs16-docs-16.17.0-8.9.1.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-8.9.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64" }, "product_reference": "npm16-16.17.0-8.9.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-8.9.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le" }, "product_reference": "npm16-16.17.0-8.9.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-8.9.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x" }, "product_reference": "npm16-16.17.0-8.9.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-8.9.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 12", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" }, "product_reference": "npm16-16.17.0-8.9.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 12" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-29244", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-29244" } ], "notes": [ { "category": "general", "text": "npm pack ignores root-level .gitignore and .npmignore file exclusion directives when run in a workspace or with a workspace flag (ie. `--workspaces`, `--workspace=\u003cname\u003e`). Anyone who has run `npm pack` or `npm publish` inside a workspace, as of v7.9.0 and v7.13.0 respectively, may be affected and have published files into the npm registry they did not intend to include. Users should upgrade to the latest, patched version of npm v8.11.0, run: npm i -g npm@latest . Node.js versions v16.15.1, v17.19.1, and v18.3.0 include the patched v8.11.0 version of npm.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-29244", "url": "https://www.suse.com/security/cve/CVE-2022-29244" }, { "category": "external", "summary": "SUSE Bug 1200517 for CVE-2022-29244", "url": "https://bugzilla.suse.com/1200517" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-08T08:35:42Z", "details": "moderate" } ], "title": "CVE-2022-29244" }, { "cve": "CVE-2022-31150", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-31150" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js. It is possible to inject CRLF sequences into request headers in undici in versions less than 5.7.1. A fix was released in version 5.8.0. Sanitizing all HTTP headers from untrusted sources to eliminate `\\r\\n` is a workaround for this issue.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-31150", "url": "https://www.suse.com/security/cve/CVE-2022-31150" }, { "category": "external", "summary": "SUSE Bug 1201710 for CVE-2022-31150", "url": "https://bugzilla.suse.com/1201710" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-08T08:35:42Z", "details": "moderate" } ], "title": "CVE-2022-31150" }, { "cve": "CVE-2022-35948", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35948" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`=\u003c undici@5.8.0` users are vulnerable to _CRLF Injection_ on headers when using unsanitized input as request headers, more specifically, inside the `content-type` header. Example: ``` import { request } from \u0027undici\u0027 const unsanitizedContentTypeInput = \u0027application/json\\r\\n\\r\\nGET /foo2 HTTP/1.1\u0027 await request(\u0027http://localhost:3000, { method: \u0027GET\u0027, headers: { \u0027content-type\u0027: unsanitizedContentTypeInput }, }) ``` The above snippet will perform two requests in a single `request` API call: 1) `http://localhost:3000/` 2) `http://localhost:3000/foo2` This issue was patched in Undici v5.8.1. Sanitize input when sending content-type headers using user input as a workaround.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35948", "url": "https://www.suse.com/security/cve/CVE-2022-35948" }, { "category": "external", "summary": "SUSE Bug 1202383 for CVE-2022-35948", "url": "https://bugzilla.suse.com/1202383" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-08T08:35:42Z", "details": "moderate" } ], "title": "CVE-2022-35948" }, { "cve": "CVE-2022-35949", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35949" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35949", "url": "https://www.suse.com/security/cve/CVE-2022-35949" }, { "category": "external", "summary": "SUSE Bug 1202382 for CVE-2022-35949", "url": "https://bugzilla.suse.com/1202382" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-devel-16.17.0-8.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 12:nodejs16-docs-16.17.0-8.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 12:npm16-16.17.0-8.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-08T08:35:42Z", "details": "moderate" } ], "title": "CVE-2022-35949" } ] }
suse-su-2022:3251-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs16", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs16 fixes the following issues:\n\n- CVE-2022-35949: Fixed SSRF when an application takes in user input into the path/pathname option of undici.request (bsc#1202382).\n- CVE-2022-35948: Fixed CRLF injection via Content-Type (bsc#1202383).\n- CVE-2022-29244: Fixed npm pack ignores root-level .gitignore and .npmignore file exclusion directives when run in a workspace (bsc#1200517).\n- CVE-2022-31150: Fixed CRLF injection in node-undici (bsc#1201710).\n\nBugfixes:\n\n- Enable crypto-policies for SLE15 SP4+ and TW (bsc#1200303)\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2022-3251,SUSE-SLE-Module-Web-Scripting-15-SP3-2022-3251,openSUSE-SLE-15.3-2022-3251", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2022_3251-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2022:3251-1", "url": "https://www.suse.com/support/update/announcement/2022/suse-su-20223251-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2022:3251-1", "url": "https://lists.suse.com/pipermail/sle-updates/2022-September/025091.html" }, { "category": "self", "summary": "SUSE Bug 1200303", "url": "https://bugzilla.suse.com/1200303" }, { "category": "self", "summary": "SUSE Bug 1200517", "url": "https://bugzilla.suse.com/1200517" }, { "category": "self", "summary": "SUSE Bug 1201710", "url": "https://bugzilla.suse.com/1201710" }, { "category": "self", "summary": "SUSE Bug 1202382", "url": "https://bugzilla.suse.com/1202382" }, { "category": "self", "summary": "SUSE Bug 1202383", "url": "https://bugzilla.suse.com/1202383" }, { "category": "self", "summary": "SUSE CVE CVE-2022-29244 page", "url": "https://www.suse.com/security/cve/CVE-2022-29244/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-31150 page", "url": "https://www.suse.com/security/cve/CVE-2022-31150/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35948 page", "url": "https://www.suse.com/security/cve/CVE-2022-35948/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35949 page", "url": "https://www.suse.com/security/cve/CVE-2022-35949/" } ], "title": "Security update for nodejs16", "tracking": { "current_release_date": "2022-09-12T07:07:06Z", "generator": { "date": "2022-09-12T07:07:06Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2022:3251-1", "initial_release_date": "2022-09-12T07:07:06Z", "revision_history": [ { "date": "2022-09-12T07:07:06Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150300.7.9.1.aarch64", "product": { "name": "corepack16-16.17.0-150300.7.9.1.aarch64", "product_id": "corepack16-16.17.0-150300.7.9.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150300.7.9.1.aarch64", "product": { "name": "nodejs16-16.17.0-150300.7.9.1.aarch64", "product_id": "nodejs16-16.17.0-150300.7.9.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "product": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "product_id": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64" } }, { "category": "product_version", "name": "npm16-16.17.0-150300.7.9.1.aarch64", "product": { "name": "npm16-16.17.0-150300.7.9.1.aarch64", "product_id": "npm16-16.17.0-150300.7.9.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150300.7.9.1.i586", "product": { "name": "corepack16-16.17.0-150300.7.9.1.i586", "product_id": "corepack16-16.17.0-150300.7.9.1.i586" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150300.7.9.1.i586", "product": { "name": "nodejs16-16.17.0-150300.7.9.1.i586", "product_id": "nodejs16-16.17.0-150300.7.9.1.i586" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150300.7.9.1.i586", "product": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.i586", "product_id": "nodejs16-devel-16.17.0-150300.7.9.1.i586" } }, { "category": "product_version", "name": "npm16-16.17.0-150300.7.9.1.i586", "product": { "name": "npm16-16.17.0-150300.7.9.1.i586", "product_id": "npm16-16.17.0-150300.7.9.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs16-docs-16.17.0-150300.7.9.1.noarch", "product": { "name": "nodejs16-docs-16.17.0-150300.7.9.1.noarch", "product_id": "nodejs16-docs-16.17.0-150300.7.9.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150300.7.9.1.ppc64le", "product": { "name": "corepack16-16.17.0-150300.7.9.1.ppc64le", "product_id": "corepack16-16.17.0-150300.7.9.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150300.7.9.1.ppc64le", "product": { "name": "nodejs16-16.17.0-150300.7.9.1.ppc64le", "product_id": "nodejs16-16.17.0-150300.7.9.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "product": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "product_id": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le" } }, { "category": "product_version", "name": "npm16-16.17.0-150300.7.9.1.ppc64le", "product": { "name": "npm16-16.17.0-150300.7.9.1.ppc64le", "product_id": "npm16-16.17.0-150300.7.9.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150300.7.9.1.s390x", "product": { "name": "corepack16-16.17.0-150300.7.9.1.s390x", "product_id": "corepack16-16.17.0-150300.7.9.1.s390x" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150300.7.9.1.s390x", "product": { "name": "nodejs16-16.17.0-150300.7.9.1.s390x", "product_id": "nodejs16-16.17.0-150300.7.9.1.s390x" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150300.7.9.1.s390x", "product": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.s390x", "product_id": "nodejs16-devel-16.17.0-150300.7.9.1.s390x" } }, { "category": "product_version", "name": "npm16-16.17.0-150300.7.9.1.s390x", "product": { "name": "npm16-16.17.0-150300.7.9.1.s390x", "product_id": "npm16-16.17.0-150300.7.9.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150300.7.9.1.x86_64", "product": { "name": "corepack16-16.17.0-150300.7.9.1.x86_64", "product_id": "corepack16-16.17.0-150300.7.9.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150300.7.9.1.x86_64", "product": { "name": "nodejs16-16.17.0-150300.7.9.1.x86_64", "product_id": "nodejs16-16.17.0-150300.7.9.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "product": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "product_id": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64" } }, { "category": "product_version", "name": "npm16-16.17.0-150300.7.9.1.x86_64", "product": { "name": "npm16-16.17.0-150300.7.9.1.x86_64", "product_id": "npm16-16.17.0-150300.7.9.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp3" } } }, { "category": "product_name", "name": "openSUSE Leap 15.3", "product": { "name": "openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.3" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-150300.7.9.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch" }, "product_reference": "nodejs16-docs-16.17.0-150300.7.9.1.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64" }, "product_reference": "npm16-16.17.0-150300.7.9.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le" }, "product_reference": "npm16-16.17.0-150300.7.9.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x" }, "product_reference": "npm16-16.17.0-150300.7.9.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP3", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64" }, "product_reference": "npm16-16.17.0-150300.7.9.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150300.7.9.1.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64" }, "product_reference": "nodejs16-16.17.0-150300.7.9.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64" }, "product_reference": "nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-150300.7.9.1.noarch as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch" }, "product_reference": "nodejs16-docs-16.17.0-150300.7.9.1.noarch", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.aarch64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64" }, "product_reference": "npm16-16.17.0-150300.7.9.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.ppc64le as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le" }, "product_reference": "npm16-16.17.0-150300.7.9.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.s390x as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x" }, "product_reference": "npm16-16.17.0-150300.7.9.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.3" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150300.7.9.1.x86_64 as component of openSUSE Leap 15.3", "product_id": "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" }, "product_reference": "npm16-16.17.0-150300.7.9.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.3" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-29244", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-29244" } ], "notes": [ { "category": "general", "text": "npm pack ignores root-level .gitignore and .npmignore file exclusion directives when run in a workspace or with a workspace flag (ie. `--workspaces`, `--workspace=\u003cname\u003e`). Anyone who has run `npm pack` or `npm publish` inside a workspace, as of v7.9.0 and v7.13.0 respectively, may be affected and have published files into the npm registry they did not intend to include. Users should upgrade to the latest, patched version of npm v8.11.0, run: npm i -g npm@latest . Node.js versions v16.15.1, v17.19.1, and v18.3.0 include the patched v8.11.0 version of npm.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-29244", "url": "https://www.suse.com/security/cve/CVE-2022-29244" }, { "category": "external", "summary": "SUSE Bug 1200517 for CVE-2022-29244", "url": "https://bugzilla.suse.com/1200517" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:07:06Z", "details": "moderate" } ], "title": "CVE-2022-29244" }, { "cve": "CVE-2022-31150", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-31150" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js. It is possible to inject CRLF sequences into request headers in undici in versions less than 5.7.1. A fix was released in version 5.8.0. Sanitizing all HTTP headers from untrusted sources to eliminate `\\r\\n` is a workaround for this issue.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-31150", "url": "https://www.suse.com/security/cve/CVE-2022-31150" }, { "category": "external", "summary": "SUSE Bug 1201710 for CVE-2022-31150", "url": "https://bugzilla.suse.com/1201710" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:07:06Z", "details": "moderate" } ], "title": "CVE-2022-31150" }, { "cve": "CVE-2022-35948", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35948" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`=\u003c undici@5.8.0` users are vulnerable to _CRLF Injection_ on headers when using unsanitized input as request headers, more specifically, inside the `content-type` header. Example: ``` import { request } from \u0027undici\u0027 const unsanitizedContentTypeInput = \u0027application/json\\r\\n\\r\\nGET /foo2 HTTP/1.1\u0027 await request(\u0027http://localhost:3000, { method: \u0027GET\u0027, headers: { \u0027content-type\u0027: unsanitizedContentTypeInput }, }) ``` The above snippet will perform two requests in a single `request` API call: 1) `http://localhost:3000/` 2) `http://localhost:3000/foo2` This issue was patched in Undici v5.8.1. Sanitize input when sending content-type headers using user input as a workaround.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35948", "url": "https://www.suse.com/security/cve/CVE-2022-35948" }, { "category": "external", "summary": "SUSE Bug 1202383 for CVE-2022-35948", "url": "https://bugzilla.suse.com/1202383" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:07:06Z", "details": "moderate" } ], "title": "CVE-2022-35948" }, { "cve": "CVE-2022-35949", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35949" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35949", "url": "https://www.suse.com/security/cve/CVE-2022-35949" }, { "category": "external", "summary": "SUSE Bug 1202382 for CVE-2022-35949", "url": "https://bugzilla.suse.com/1202382" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP3:npm16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:nodejs16-devel-16.17.0-150300.7.9.1.x86_64", "openSUSE Leap 15.3:nodejs16-docs-16.17.0-150300.7.9.1.noarch", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.aarch64", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.ppc64le", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.s390x", "openSUSE Leap 15.3:npm16-16.17.0-150300.7.9.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:07:06Z", "details": "moderate" } ], "title": "CVE-2022-35949" } ] }
suse-su-2022:3250-1
Vulnerability from csaf_suse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Security update for nodejs16", "title": "Title of the patch" }, { "category": "description", "text": "This update for nodejs16 fixes the following issues:\n\n- CVE-2022-35949: Fixed SSRF when an application takes in user input into the path/pathname option of undici.request (bsc#1202382).\n- CVE-2022-35948: Fixed CRLF injection via Content-Type (bsc#1202383).\n- CVE-2022-29244: Fixed npm pack ignores root-level .gitignore and .npmignore file exclusion directives when run in a workspace (bsc#1200517).\n- CVE-2022-31150: Fixed CRLF injection in node-undici (bsc#1201710).\n\nBugfixes:\n\n- Enable crypto-policies for SLE15 SP4+ and TW (bsc#1200303)\n", "title": "Description of the patch" }, { "category": "details", "text": "SUSE-2022-3250,SUSE-SLE-Module-Web-Scripting-15-SP4-2022-3250,openSUSE-SLE-15.4-2022-3250", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/suse-su-2022_3250-1.json" }, { "category": "self", "summary": "URL for SUSE-SU-2022:3250-1", "url": "https://www.suse.com/support/update/announcement/2022/suse-su-20223250-1/" }, { "category": "self", "summary": "E-Mail link for SUSE-SU-2022:3250-1", "url": "https://lists.suse.com/pipermail/sle-security-updates/2022-September/012208.html" }, { "category": "self", "summary": "SUSE Bug 1200303", "url": "https://bugzilla.suse.com/1200303" }, { "category": "self", "summary": "SUSE Bug 1200517", "url": "https://bugzilla.suse.com/1200517" }, { "category": "self", "summary": "SUSE Bug 1201710", "url": "https://bugzilla.suse.com/1201710" }, { "category": "self", "summary": "SUSE Bug 1202382", "url": "https://bugzilla.suse.com/1202382" }, { "category": "self", "summary": "SUSE Bug 1202383", "url": "https://bugzilla.suse.com/1202383" }, { "category": "self", "summary": "SUSE CVE CVE-2022-29244 page", "url": "https://www.suse.com/security/cve/CVE-2022-29244/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-31150 page", "url": "https://www.suse.com/security/cve/CVE-2022-31150/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35948 page", "url": "https://www.suse.com/security/cve/CVE-2022-35948/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35949 page", "url": "https://www.suse.com/security/cve/CVE-2022-35949/" } ], "title": "Security update for nodejs16", "tracking": { "current_release_date": "2022-09-12T07:06:54Z", "generator": { "date": "2022-09-12T07:06:54Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "SUSE-SU-2022:3250-1", "initial_release_date": "2022-09-12T07:06:54Z", "revision_history": [ { "date": "2022-09-12T07:06:54Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150400.3.6.1.aarch64", "product": { "name": "corepack16-16.17.0-150400.3.6.1.aarch64", "product_id": "corepack16-16.17.0-150400.3.6.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150400.3.6.1.aarch64", "product": { "name": "nodejs16-16.17.0-150400.3.6.1.aarch64", "product_id": "nodejs16-16.17.0-150400.3.6.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "product": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "product_id": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64" } }, { "category": "product_version", "name": "npm16-16.17.0-150400.3.6.1.aarch64", "product": { "name": "npm16-16.17.0-150400.3.6.1.aarch64", "product_id": "npm16-16.17.0-150400.3.6.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150400.3.6.1.i586", "product": { "name": "corepack16-16.17.0-150400.3.6.1.i586", "product_id": "corepack16-16.17.0-150400.3.6.1.i586" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150400.3.6.1.i586", "product": { "name": "nodejs16-16.17.0-150400.3.6.1.i586", "product_id": "nodejs16-16.17.0-150400.3.6.1.i586" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150400.3.6.1.i586", "product": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.i586", "product_id": "nodejs16-devel-16.17.0-150400.3.6.1.i586" } }, { "category": "product_version", "name": "npm16-16.17.0-150400.3.6.1.i586", "product": { "name": "npm16-16.17.0-150400.3.6.1.i586", "product_id": "npm16-16.17.0-150400.3.6.1.i586" } } ], "category": "architecture", "name": "i586" }, { "branches": [ { "category": "product_version", "name": "nodejs16-docs-16.17.0-150400.3.6.1.noarch", "product": { "name": "nodejs16-docs-16.17.0-150400.3.6.1.noarch", "product_id": "nodejs16-docs-16.17.0-150400.3.6.1.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150400.3.6.1.ppc64le", "product": { "name": "corepack16-16.17.0-150400.3.6.1.ppc64le", "product_id": "corepack16-16.17.0-150400.3.6.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150400.3.6.1.ppc64le", "product": { "name": "nodejs16-16.17.0-150400.3.6.1.ppc64le", "product_id": "nodejs16-16.17.0-150400.3.6.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "product": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "product_id": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le" } }, { "category": "product_version", "name": "npm16-16.17.0-150400.3.6.1.ppc64le", "product": { "name": "npm16-16.17.0-150400.3.6.1.ppc64le", "product_id": "npm16-16.17.0-150400.3.6.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150400.3.6.1.s390x", "product": { "name": "corepack16-16.17.0-150400.3.6.1.s390x", "product_id": "corepack16-16.17.0-150400.3.6.1.s390x" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150400.3.6.1.s390x", "product": { "name": "nodejs16-16.17.0-150400.3.6.1.s390x", "product_id": "nodejs16-16.17.0-150400.3.6.1.s390x" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150400.3.6.1.s390x", "product": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.s390x", "product_id": "nodejs16-devel-16.17.0-150400.3.6.1.s390x" } }, { "category": "product_version", "name": "npm16-16.17.0-150400.3.6.1.s390x", "product": { "name": "npm16-16.17.0-150400.3.6.1.s390x", "product_id": "npm16-16.17.0-150400.3.6.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-150400.3.6.1.x86_64", "product": { "name": "corepack16-16.17.0-150400.3.6.1.x86_64", "product_id": "corepack16-16.17.0-150400.3.6.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-150400.3.6.1.x86_64", "product": { "name": "nodejs16-16.17.0-150400.3.6.1.x86_64", "product_id": "nodejs16-16.17.0-150400.3.6.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "product": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "product_id": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64" } }, { "category": "product_version", "name": "npm16-16.17.0-150400.3.6.1.x86_64", "product": { "name": "npm16-16.17.0-150400.3.6.1.x86_64", "product_id": "npm16-16.17.0-150400.3.6.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product": { "name": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_identification_helper": { "cpe": "cpe:/o:suse:sle-module-web-scripting:15:sp4" } } }, { "category": "product_name", "name": "openSUSE Leap 15.4", "product": { "name": "openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4", "product_identification_helper": { "cpe": "cpe:/o:opensuse:leap:15.4" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-150400.3.6.1.noarch as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch" }, "product_reference": "nodejs16-docs-16.17.0-150400.3.6.1.noarch", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.aarch64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "npm16-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.ppc64le as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "npm16-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.s390x as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x" }, "product_reference": "npm16-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.x86_64 as component of SUSE Linux Enterprise Module for Web and Scripting 15 SP4", "product_id": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "npm16-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "SUSE Linux Enterprise Module for Web and Scripting 15 SP4" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-150400.3.6.1.aarch64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "corepack16-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-150400.3.6.1.ppc64le as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "corepack16-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-150400.3.6.1.s390x as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x" }, "product_reference": "corepack16-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-150400.3.6.1.x86_64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "corepack16-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.aarch64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.ppc64le as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.s390x as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-150400.3.6.1.x86_64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "nodejs16-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.s390x as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-150400.3.6.1.noarch as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch" }, "product_reference": "nodejs16-docs-16.17.0-150400.3.6.1.noarch", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.aarch64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64" }, "product_reference": "npm16-16.17.0-150400.3.6.1.aarch64", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.ppc64le as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le" }, "product_reference": "npm16-16.17.0-150400.3.6.1.ppc64le", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.s390x as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x" }, "product_reference": "npm16-16.17.0-150400.3.6.1.s390x", "relates_to_product_reference": "openSUSE Leap 15.4" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-150400.3.6.1.x86_64 as component of openSUSE Leap 15.4", "product_id": "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" }, "product_reference": "npm16-16.17.0-150400.3.6.1.x86_64", "relates_to_product_reference": "openSUSE Leap 15.4" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-29244", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-29244" } ], "notes": [ { "category": "general", "text": "npm pack ignores root-level .gitignore and .npmignore file exclusion directives when run in a workspace or with a workspace flag (ie. `--workspaces`, `--workspace=\u003cname\u003e`). Anyone who has run `npm pack` or `npm publish` inside a workspace, as of v7.9.0 and v7.13.0 respectively, may be affected and have published files into the npm registry they did not intend to include. Users should upgrade to the latest, patched version of npm v8.11.0, run: npm i -g npm@latest . Node.js versions v16.15.1, v17.19.1, and v18.3.0 include the patched v8.11.0 version of npm.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-29244", "url": "https://www.suse.com/security/cve/CVE-2022-29244" }, { "category": "external", "summary": "SUSE Bug 1200517 for CVE-2022-29244", "url": "https://bugzilla.suse.com/1200517" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:06:54Z", "details": "moderate" } ], "title": "CVE-2022-29244" }, { "cve": "CVE-2022-31150", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-31150" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js. It is possible to inject CRLF sequences into request headers in undici in versions less than 5.7.1. A fix was released in version 5.8.0. Sanitizing all HTTP headers from untrusted sources to eliminate `\\r\\n` is a workaround for this issue.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-31150", "url": "https://www.suse.com/security/cve/CVE-2022-31150" }, { "category": "external", "summary": "SUSE Bug 1201710 for CVE-2022-31150", "url": "https://bugzilla.suse.com/1201710" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:06:54Z", "details": "moderate" } ], "title": "CVE-2022-31150" }, { "cve": "CVE-2022-35948", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35948" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`=\u003c undici@5.8.0` users are vulnerable to _CRLF Injection_ on headers when using unsanitized input as request headers, more specifically, inside the `content-type` header. Example: ``` import { request } from \u0027undici\u0027 const unsanitizedContentTypeInput = \u0027application/json\\r\\n\\r\\nGET /foo2 HTTP/1.1\u0027 await request(\u0027http://localhost:3000, { method: \u0027GET\u0027, headers: { \u0027content-type\u0027: unsanitizedContentTypeInput }, }) ``` The above snippet will perform two requests in a single `request` API call: 1) `http://localhost:3000/` 2) `http://localhost:3000/foo2` This issue was patched in Undici v5.8.1. Sanitize input when sending content-type headers using user input as a workaround.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35948", "url": "https://www.suse.com/security/cve/CVE-2022-35948" }, { "category": "external", "summary": "SUSE Bug 1202383 for CVE-2022-35948", "url": "https://bugzilla.suse.com/1202383" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:06:54Z", "details": "moderate" } ], "title": "CVE-2022-35948" }, { "cve": "CVE-2022-35949", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35949" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "title": "CVE description" } ], "product_status": { "recommended": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35949", "url": "https://www.suse.com/security/cve/CVE-2022-35949" }, { "category": "external", "summary": "SUSE Bug 1202382 for CVE-2022-35949", "url": "https://bugzilla.suse.com/1202382" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "version": "3.1" }, "products": [ "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.aarch64", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.ppc64le", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.s390x", "SUSE Linux Enterprise Module for Web and Scripting 15 SP4:npm16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:corepack16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:nodejs16-devel-16.17.0-150400.3.6.1.x86_64", "openSUSE Leap 15.4:nodejs16-docs-16.17.0-150400.3.6.1.noarch", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.aarch64", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.ppc64le", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.s390x", "openSUSE Leap 15.4:npm16-16.17.0-150400.3.6.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2022-09-12T07:06:54Z", "details": "moderate" } ], "title": "CVE-2022-35949" } ] }
gsd-2022-35949
Vulnerability from gsd
{ "GSD": { "alias": "CVE-2022-35949", "description": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "id": "GSD-2022-35949", "references": [ "https://www.suse.com/security/cve/CVE-2022-35949.html" ] }, "gsd": { "metadata": { "exploitCode": "unknown", "remediation": "unknown", "reportConfidence": "confirmed", "type": "vulnerability" }, "osvSchema": { "aliases": [ "CVE-2022-35949" ], "details": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "id": "GSD-2022-35949", "modified": "2023-12-13T01:19:33.582016Z", "schema_version": "1.4.0" } }, "namespaces": { "cve.org": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2022-35949", "STATE": "PUBLIC", "TITLE": "`undici.request` vulnerable to SSRF using absolute URL on `pathname`" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "undici", "version": { "version_data": [ { "version_value": "\u003c= 5.8.1" } ] } } ] }, "vendor_name": "nodejs" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call." } ] }, "impact": { "cvss": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 6.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "version": "3.1" } }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "CWE-918: Server-Side Request Forgery (SSRF)" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3", "refsource": "CONFIRM", "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" }, { "name": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895", "refsource": "MISC", "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" }, { "name": "https://github.com/nodejs/undici/releases/tag/v5.8.2", "refsource": "MISC", "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" } ] }, "source": { "advisory": "GHSA-8qr4-xgw6-wmr3", "discovery": "UNKNOWN" } }, "gitlab.com": { "advisories": [ { "affected_range": "\u003c=5.8.1", "affected_versions": "All versions up to 5.8.1", "cvss_v3": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "cwe_ids": [ "CWE-1035", "CWE-918", "CWE-937" ], "date": "2023-03-28", "description": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "fixed_versions": [ "5.8.2" ], "identifier": "CVE-2022-35949", "identifiers": [ "CVE-2022-35949", "GHSA-8qr4-xgw6-wmr3" ], "not_impacted": "All versions after 5.8.1", "package_slug": "npm/undici", "pubdate": "2022-08-12", "solution": "Upgrade to version 5.8.2 or above.", "title": "Server-Side Request Forgery (SSRF)", "urls": [ "https://nvd.nist.gov/vuln/detail/CVE-2022-35949", "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3", "https://github.com/nodejs/undici/releases/tag/v5.8.2", "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" ], "uuid": "a54bc49a-fa85-4d70-8bc2-58c6cbc6f5a9" } ] }, "nvd.nist.gov": { "configurations": { "CVE_data_version": "4.0", "nodes": [ { "children": [], "cpe_match": [ { "cpe23Uri": "cpe:2.3:a:nodejs:undici:*:*:*:*:*:node.js:*:*", "cpe_name": [], "versionEndIncluding": "5.8.1", "vulnerable": true } ], "operator": "OR" } ] }, "cve": { "CVE_data_meta": { "ASSIGNER": "security-advisories@github.com", "ID": "CVE-2022-35949" }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "en", "value": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call." } ] }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "en", "value": "CWE-918" } ] } ] }, "references": { "reference_data": [ { "name": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3", "refsource": "CONFIRM", "tags": [ "Exploit", "Mitigation", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" }, { "name": "https://github.com/nodejs/undici/releases/tag/v5.8.2", "refsource": "MISC", "tags": [ "Release Notes", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" }, { "name": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895", "refsource": "MISC", "tags": [ "Patch", "Third Party Advisory" ], "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" } ] } }, "impact": { "baseMetricV3": { "cvssV3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 9.8, "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:H", "version": "3.1" }, "exploitabilityScore": 3.9, "impactScore": 5.9 } }, "lastModifiedDate": "2023-03-28T17:10Z", "publishedDate": "2022-08-12T23:15Z" } } }
rhsa-2022:7276
Vulnerability from csaf_redhat
Notes
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "Red Hat Advanced Cluster Management for Kubernetes 2.4.8 General\nAvailability release images, which fix security issues.\n\nRed Hat Product Security has rated this update as having a security impact\nof Moderate. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE links in the References section.", "title": "Topic" }, { "category": "general", "text": "Red Hat Advanced Cluster Management for Kubernetes 2.4.8 images\n\nRed Hat Advanced Cluster Management for Kubernetes provides the\ncapabilities to address common challenges that administrators and site\nreliability engineers face as they work across a range of public and\nprivate cloud environments. Clusters and applications are all visible and\nmanaged from a single console\u2014with security policy built in.\n\nThis advisory contains the container images for Red Hat Advanced Cluster\nManagement for Kubernetes, which fix several bugs. See the following\nRelease Notes documentation, which will be updated shortly for this\nrelease, for additional details about this release:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.4/html/release_notes/\n\nSecurity fixes:\n\n* moment: inefficient parsing algorithm resulting in DoS (CVE-2022-31129)\n\n* nodejs: undici vulnerable to CRLF via content headers (CVE-2022-35948)\n\n* nodejs: undici.request vulnerable to SSRF (CVE-2022-35949)\n\n* terser: insecure use of regular expressions leads to ReDoS (CVE-2022-25858)\n\n* search-api: SQL injection leads to remote denial of service (CVE-2022-2238)\n\nBug fix: \n\n* RHACM 2.4.8 images (BZ# 2130745)", "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-2022:7276", "url": "https://access.redhat.com/errata/RHSA-2022:7276" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2101669", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2101669" }, { "category": "external", "summary": "2105075", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2105075" }, { "category": "external", "summary": "2121068", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2121068" }, { "category": "external", "summary": "2121101", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2121101" }, { "category": "external", "summary": "2126277", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2126277" }, { "category": "external", "summary": "2130745", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2130745" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2022/rhsa-2022_7276.json" } ], "title": "Red Hat Security Advisory: Red Hat Advanced Cluster Management 2.4.8 security fixes and container updates", "tracking": { "current_release_date": "2025-08-18T09:30:34+00:00", "generator": { "date": "2025-08-18T09:30:34+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.6.6" } }, "id": "RHSA-2022:7276", "initial_release_date": "2022-11-01T19:46:29+00:00", "revision_history": [ { "date": "2022-11-01T19:46:29+00:00", "number": "1", "summary": "Initial version" }, { "date": "2022-11-01T19:46:29+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2025-08-18T09:30:34+00:00", "number": "3", "summary": "Last generated version" } ], "status": "final", "version": "3" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product": { "name": "Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4", "product_identification_helper": { "cpe": "cpe:/a:redhat:acm:2.4::el8" } } } ], "category": "product_family", "name": "Red Hat ACM" }, { "branches": [ { "category": "product_version", "name": "rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "product": { "name": "rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "product_id": "rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "product_identification_helper": { "purl": "pkg:oci/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "product": { "name": "rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "product_id": "rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "product_identification_helper": { "purl": "pkg:oci/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "product": { "name": "rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "product_id": "rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "product_identification_helper": { "purl": "pkg:oci/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/acm-operator-bundle\u0026tag=v2.4.8-16" } } }, { "category": "product_version", "name": "rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "product": { "name": "rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "product_id": "rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "product_identification_helper": { "purl": "pkg:oci/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/application-ui-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "product": { "name": "rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "product_id": "rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "product_identification_helper": { "purl": "pkg:oci/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/assisted-image-service-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "product": { "name": "rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "product_identification_helper": { "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "product": { "name": "rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "product_identification_helper": { "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "product": { "name": "rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "product_id": "rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "product_identification_helper": { "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/clusterclaims-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "product": { "name": "rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "product_id": "rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "product_identification_helper": { "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/cluster-curator-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "product": { "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "product_id": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "product_identification_helper": { "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/clusterlifecycle-state-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "product": { "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "product_id": "rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "product_identification_helper": { "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/cluster-proxy-addon-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "product": { "name": "rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "product_id": "rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "product_identification_helper": { "purl": "pkg:oci/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "product": { "name": "rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "product_id": "rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "product_identification_helper": { "purl": "pkg:oci/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/console-api-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "product": { "name": "rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "product_id": "rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "product_identification_helper": { "purl": "pkg:oci/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/console-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "product": { "name": "rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "product_id": "rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "product_identification_helper": { "purl": "pkg:oci/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/discovery-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "product": { "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "product_identification_helper": { "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "product": { "name": "rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "product_identification_helper": { "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "product": { "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "product_identification_helper": { "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "product": { "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "product_identification_helper": { "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "product": { "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "product_identification_helper": { "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "product": { "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "product_identification_helper": { "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "product": { "name": "rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "product_id": "rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "product_identification_helper": { "purl": "pkg:oci/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/grc-ui-api-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "product": { "name": "rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "product_id": "rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "product_identification_helper": { "purl": "pkg:oci/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/grc-ui-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "product": { "name": "rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "product_identification_helper": { "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "product": { "name": "rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "product_id": "rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "product_identification_helper": { "purl": "pkg:oci/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "product": { "name": "rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "product_id": "rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "product_identification_helper": { "purl": "pkg:oci/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "product": { "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "product_identification_helper": { "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "product": { "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "product_id": "rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "product_identification_helper": { "purl": "pkg:oci/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "product": { "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "product_identification_helper": { "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "product": { "name": "rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "product_identification_helper": { "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "product": { "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "product_id": "rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "product_identification_helper": { "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/managedcluster-import-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "product": { "name": "rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "product_id": "rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "product_identification_helper": { "purl": "pkg:oci/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "product": { "name": "rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "product_id": "rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "product_identification_helper": { "purl": "pkg:oci/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/memcached-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "product": { "name": "rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "product_id": "rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "product_identification_helper": { "purl": "pkg:oci/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "product": { "name": "rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "product_id": "rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "product_identification_helper": { "purl": "pkg:oci/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "product": { "name": "rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "product_identification_helper": { "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "product": { "name": "rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "product_id": "rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "product_identification_helper": { "purl": "pkg:oci/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicloud-manager-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "product": { "name": "rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "product_id": "rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "product_identification_helper": { "purl": "pkg:oci/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "product": { "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "product_identification_helper": { "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "product": { "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "product": { "name": "rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "product": { "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "product": { "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "product_id": "rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-deployable-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "product": { "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "product_id": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-placementrule-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "product": { "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "product": { "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "product_id": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-release-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "product": { "name": "rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "product_id": "rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "product_identification_helper": { "purl": "pkg:oci/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "product": { "name": "rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "product_id": "rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "product_identification_helper": { "purl": "pkg:oci/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "product": { "name": "rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "product_id": "rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "product_identification_helper": { "purl": "pkg:oci/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "product": { "name": "rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "product_id": "rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "product_identification_helper": { "purl": "pkg:oci/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/openshift-hive-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "product": { "name": "rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "product_id": "rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "product_identification_helper": { "purl": "pkg:oci/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/placement-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "product": { "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "product_identification_helper": { "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "product": { "name": "rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "product_id": "rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "product_identification_helper": { "purl": "pkg:oci/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "product": { "name": "rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "product_id": "rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "product_identification_helper": { "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/provider-credential-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "product": { "name": "rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "product_identification_helper": { "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "product": { "name": "rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "product_identification_helper": { "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "product": { "name": "rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "product_id": "rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "product_identification_helper": { "purl": "pkg:oci/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/registration-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "product": { "name": "rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "product_id": "rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "product_identification_helper": { "purl": "pkg:oci/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/registration-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "product": { "name": "rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "product_id": "rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "product_identification_helper": { "purl": "pkg:oci/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/agent-service-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "product": { "name": "rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "product_id": "rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "product_identification_helper": { "purl": "pkg:oci/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "product": { "name": "rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "product_id": "rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "product_identification_helper": { "purl": "pkg:oci/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/search-api-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "product": { "name": "rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "product_id": "rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "product_identification_helper": { "purl": "pkg:oci/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "product": { "name": "rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "product_id": "rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "product_identification_helper": { "purl": "pkg:oci/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/search-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "product": { "name": "rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "product_id": "rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "product_identification_helper": { "purl": "pkg:oci/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/search-ui-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "product": { "name": "rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "product_id": "rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "product_identification_helper": { "purl": "pkg:oci/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "product": { "name": "rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "product_id": "rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "product_identification_helper": { "purl": "pkg:oci/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "product": { "name": "rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "product_identification_helper": { "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "product": { "name": "rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "product_id": "rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "product_identification_helper": { "purl": "pkg:oci/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/volsync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "product": { "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "product_id": "rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-rclone-rhel8\u0026tag=v2.4.8-2" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "product": { "name": "rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "product_id": "rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-restic-rhel8\u0026tag=v2.4.8-2" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "product": { "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "product_id": "rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-rsync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "product": { "name": "rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "product_id": "rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "product_identification_helper": { "purl": "pkg:oci/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2/work-rhel8\u0026tag=v2.4.8-3" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "product": { "name": "rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "product_id": "rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "product_identification_helper": { "purl": "pkg:oci/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "product": { "name": "rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "product_id": "rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "product_identification_helper": { "purl": "pkg:oci/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "product": { "name": "rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "product_id": "rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "product_identification_helper": { "purl": "pkg:oci/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/acm-operator-bundle\u0026tag=v2.4.8-16" } } }, { "category": "product_version", "name": "rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "product": { "name": "rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "product_id": "rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "product_identification_helper": { "purl": "pkg:oci/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/application-ui-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "product": { "name": "rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "product_id": "rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "product_identification_helper": { "purl": "pkg:oci/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/assisted-image-service-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "product": { "name": "rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "product_identification_helper": { "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "product": { "name": "rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "product_identification_helper": { "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "product": { "name": "rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "product_id": "rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "product_identification_helper": { "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/clusterclaims-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "product": { "name": "rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "product_id": "rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "product_identification_helper": { "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/cluster-curator-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "product": { "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "product_id": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "product_identification_helper": { "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/clusterlifecycle-state-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "product": { "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "product_id": "rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "product_identification_helper": { "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/cluster-proxy-addon-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "product": { "name": "rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "product_id": "rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "product_identification_helper": { "purl": "pkg:oci/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "product": { "name": "rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "product_id": "rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "product_identification_helper": { "purl": "pkg:oci/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/console-api-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "product": { "name": "rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "product_id": "rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "product_identification_helper": { "purl": "pkg:oci/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/console-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "product": { "name": "rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "product_id": "rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "product_identification_helper": { "purl": "pkg:oci/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/discovery-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "product": { "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "product_identification_helper": { "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "product": { "name": "rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "product_identification_helper": { "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "product": { "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "product_identification_helper": { "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "product": { "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "product_identification_helper": { "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "product": { "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "product_identification_helper": { "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "product": { "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "product_identification_helper": { "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "product": { "name": "rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "product_id": "rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "product_identification_helper": { "purl": "pkg:oci/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/grc-ui-api-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "product": { "name": "rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "product_id": "rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "product_identification_helper": { "purl": "pkg:oci/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/grc-ui-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "product": { "name": "rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "product_identification_helper": { "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "product": { "name": "rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "product_id": "rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "product_identification_helper": { "purl": "pkg:oci/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "product": { "name": "rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "product_id": "rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "product_identification_helper": { "purl": "pkg:oci/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "product": { "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "product_identification_helper": { "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "product": { "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "product_id": "rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "product_identification_helper": { "purl": "pkg:oci/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "product": { "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "product_identification_helper": { "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "product": { "name": "rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "product_identification_helper": { "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "product": { "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "product_id": "rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "product_identification_helper": { "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/managedcluster-import-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "product": { "name": "rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "product_id": "rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "product_identification_helper": { "purl": "pkg:oci/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "product": { "name": "rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "product_id": "rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "product_identification_helper": { "purl": "pkg:oci/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/memcached-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "product": { "name": "rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "product_id": "rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "product_identification_helper": { "purl": "pkg:oci/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "product": { "name": "rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "product_id": "rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "product_identification_helper": { "purl": "pkg:oci/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "product": { "name": "rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "product_identification_helper": { "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "product": { "name": "rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "product_id": "rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "product_identification_helper": { "purl": "pkg:oci/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicloud-manager-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "product": { "name": "rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "product_id": "rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "product_identification_helper": { "purl": "pkg:oci/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "product": { "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "product_identification_helper": { "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "product": { "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "product": { "name": "rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "product": { "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "product": { "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "product_id": "rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-deployable-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "product": { "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "product_id": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-placementrule-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "product": { "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "product": { "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "product_id": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-release-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "product": { "name": "rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "product_id": "rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "product_identification_helper": { "purl": "pkg:oci/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "product": { "name": "rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "product_id": "rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "product_identification_helper": { "purl": "pkg:oci/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "product": { "name": "rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "product_id": "rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "product_identification_helper": { "purl": "pkg:oci/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "product": { "name": "rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "product_id": "rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "product_identification_helper": { "purl": "pkg:oci/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/openshift-hive-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "product": { "name": "rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "product_id": "rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "product_identification_helper": { "purl": "pkg:oci/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/placement-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "product": { "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "product_identification_helper": { "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "product": { "name": "rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "product_id": "rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "product_identification_helper": { "purl": "pkg:oci/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "product": { "name": "rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "product_id": "rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "product_identification_helper": { "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/provider-credential-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "product": { "name": "rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "product_identification_helper": { "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "product": { "name": "rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "product_identification_helper": { "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "product": { "name": "rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "product_id": "rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "product_identification_helper": { "purl": "pkg:oci/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/registration-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "product": { "name": "rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "product_id": "rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "product_identification_helper": { "purl": "pkg:oci/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/registration-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "product": { "name": "rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "product_id": "rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "product_identification_helper": { "purl": "pkg:oci/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/agent-service-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "product": { "name": "rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "product_id": "rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "product_identification_helper": { "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/assisted-installer-agent-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "product": { "name": "rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "product_id": "rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "product_identification_helper": { "purl": "pkg:oci/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/assisted-installer-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "product": { "name": "rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "product_id": "rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "product_identification_helper": { "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/assisted-installer-reporter-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "product": { "name": "rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "product_id": "rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "product_identification_helper": { "purl": "pkg:oci/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "product": { "name": "rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "product_id": "rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "product_identification_helper": { "purl": "pkg:oci/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/search-api-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "product": { "name": "rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "product_id": "rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "product_identification_helper": { "purl": "pkg:oci/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "product": { "name": "rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "product_id": "rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "product_identification_helper": { "purl": "pkg:oci/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/search-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "product": { "name": "rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "product_id": "rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "product_identification_helper": { "purl": "pkg:oci/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/search-ui-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "product": { "name": "rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "product_id": "rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "product_identification_helper": { "purl": "pkg:oci/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "product": { "name": "rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "product_id": "rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "product_identification_helper": { "purl": "pkg:oci/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "product": { "name": "rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "product_identification_helper": { "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "product": { "name": "rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "product_id": "rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "product_identification_helper": { "purl": "pkg:oci/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/volsync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "product": { "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "product_id": "rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-rclone-rhel8\u0026tag=v2.4.8-2" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "product": { "name": "rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "product_id": "rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-restic-rhel8\u0026tag=v2.4.8-2" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "product": { "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "product_id": "rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-rsync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64", "product": { "name": "rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64", "product_id": "rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64", "product_identification_helper": { "purl": "pkg:oci/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2/work-rhel8\u0026tag=v2.4.8-3" } } } ], "category": "architecture", "name": "amd64" }, { "branches": [ { "category": "product_version", "name": "rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "product": { "name": "rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "product_id": "rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "product_identification_helper": { "purl": "pkg:oci/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "product": { "name": "rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "product_id": "rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "product_identification_helper": { "purl": "pkg:oci/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "product": { "name": "rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "product_id": "rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "product_identification_helper": { "purl": "pkg:oci/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/acm-operator-bundle\u0026tag=v2.4.8-16" } } }, { "category": "product_version", "name": "rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "product": { "name": "rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "product_id": "rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "product_identification_helper": { "purl": "pkg:oci/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/application-ui-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "product": { "name": "rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "product_id": "rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "product_identification_helper": { "purl": "pkg:oci/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/assisted-image-service-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "product": { "name": "rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "product_identification_helper": { "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "product": { "name": "rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "product_identification_helper": { "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "product": { "name": "rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "product_id": "rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "product_identification_helper": { "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/clusterclaims-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "product": { "name": "rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "product_id": "rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "product_identification_helper": { "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/cluster-curator-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "product": { "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "product_id": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "product_identification_helper": { "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/clusterlifecycle-state-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "product": { "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "product_id": "rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "product_identification_helper": { "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/cluster-proxy-addon-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "product": { "name": "rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "product_id": "rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "product_identification_helper": { "purl": "pkg:oci/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "product": { "name": "rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "product_id": "rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "product_identification_helper": { "purl": "pkg:oci/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/console-api-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "product": { "name": "rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "product_id": "rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "product_identification_helper": { "purl": "pkg:oci/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/console-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "product": { "name": "rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "product_id": "rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "product_identification_helper": { "purl": "pkg:oci/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/discovery-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "product": { "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "product_identification_helper": { "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "product": { "name": "rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "product_identification_helper": { "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "product": { "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "product_identification_helper": { "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "product": { "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "product_identification_helper": { "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "product": { "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "product_identification_helper": { "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "product": { "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "product_identification_helper": { "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "product": { "name": "rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "product_id": "rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "product_identification_helper": { "purl": "pkg:oci/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/grc-ui-api-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "product": { "name": "rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "product_id": "rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "product_identification_helper": { "purl": "pkg:oci/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/grc-ui-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "product": { "name": "rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "product_identification_helper": { "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "product": { "name": "rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "product_id": "rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "product_identification_helper": { "purl": "pkg:oci/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/insights-client-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "product": { "name": "rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "product_id": "rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "product_identification_helper": { "purl": "pkg:oci/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "product": { "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "product_identification_helper": { "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "product": { "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "product_id": "rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "product_identification_helper": { "purl": "pkg:oci/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/klusterlet-addon-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "product": { "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "product_identification_helper": { "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "product": { "name": "rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "product_identification_helper": { "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "product": { "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "product_id": "rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "product_identification_helper": { "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/managedcluster-import-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "product": { "name": "rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "product_id": "rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "product_identification_helper": { "purl": "pkg:oci/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "product": { "name": "rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "product_id": "rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "product_identification_helper": { "purl": "pkg:oci/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/memcached-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "product": { "name": "rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "product_id": "rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "product_identification_helper": { "purl": "pkg:oci/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "product": { "name": "rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "product_id": "rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "product_identification_helper": { "purl": "pkg:oci/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "product": { "name": "rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "product": { "name": "rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "product_id": "rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicloud-manager-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "product": { "name": "rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "product_id": "rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "product": { "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8\u0026tag=v2.4.8-4" } } }, { "category": "product_version", "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "product": { "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "product": { "name": "rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "product": { "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "product": { "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "product_id": "rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-deployable-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "product": { "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "product_id": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-placementrule-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "product": { "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "product": { "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "product_id": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "product_identification_helper": { "purl": "pkg:oci/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-release-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "product": { "name": "rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "product_id": "rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "product_identification_helper": { "purl": "pkg:oci/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "product": { "name": "rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "product_id": "rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "product_identification_helper": { "purl": "pkg:oci/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "product": { "name": "rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "product_id": "rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "product_identification_helper": { "purl": "pkg:oci/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "product": { "name": "rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "product_id": "rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "product_identification_helper": { "purl": "pkg:oci/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/openshift-hive-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "product": { "name": "rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "product_id": "rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "product_identification_helper": { "purl": "pkg:oci/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/placement-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "product": { "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "product_identification_helper": { "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "product": { "name": "rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "product_id": "rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "product_identification_helper": { "purl": "pkg:oci/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/prometheus-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "product": { "name": "rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "product_id": "rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "product_identification_helper": { "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/provider-credential-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "product": { "name": "rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "product_identification_helper": { "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "product": { "name": "rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "product_identification_helper": { "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "product": { "name": "rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "product_id": "rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "product_identification_helper": { "purl": "pkg:oci/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/registration-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "product": { "name": "rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "product_id": "rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "product_identification_helper": { "purl": "pkg:oci/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/registration-rhel8-operator\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "product": { "name": "rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "product_id": "rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "product_identification_helper": { "purl": "pkg:oci/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/agent-service-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "product": { "name": "rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "product_id": "rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "product_identification_helper": { "purl": "pkg:oci/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/assisted-installer-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "product": { "name": "rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "product_id": "rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "product_identification_helper": { "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/assisted-installer-reporter-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "product": { "name": "rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "product_id": "rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "product_identification_helper": { "purl": "pkg:oci/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "product": { "name": "rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "product_id": "rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "product_identification_helper": { "purl": "pkg:oci/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/search-api-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "product": { "name": "rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "product_id": "rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "product_identification_helper": { "purl": "pkg:oci/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/search-collector-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "product": { "name": "rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "product_id": "rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "product_identification_helper": { "purl": "pkg:oci/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/search-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "product": { "name": "rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "product_id": "rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "product_identification_helper": { "purl": "pkg:oci/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/search-ui-rhel8\u0026tag=v2.4.8-5" } } }, { "category": "product_version", "name": "rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "product": { "name": "rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "product_id": "rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "product_identification_helper": { "purl": "pkg:oci/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "product": { "name": "rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "product_id": "rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "product_identification_helper": { "purl": "pkg:oci/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/thanos-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "product": { "name": "rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "product_identification_helper": { "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "product": { "name": "rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "product_id": "rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "product_identification_helper": { "purl": "pkg:oci/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/volsync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "product": { "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "product_id": "rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-rclone-rhel8\u0026tag=v2.4.8-2" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "product": { "name": "rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "product_id": "rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-restic-rhel8\u0026tag=v2.4.8-2" } } }, { "category": "product_version", "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "product": { "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "product_id": "rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "product_identification_helper": { "purl": "pkg:oci/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/volsync-mover-rsync-rhel8\u0026tag=v2.4.8-3" } } }, { "category": "product_version", "name": "rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "product": { "name": "rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "product_id": "rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "product_identification_helper": { "purl": "pkg:oci/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2/work-rhel8\u0026tag=v2.4.8-3" } } } ], "category": "architecture", "name": "ppc64le" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64" }, "product_reference": "rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le" }, "product_reference": "rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x" }, "product_reference": "rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64" }, "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le" }, "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x" }, "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le" }, "product_reference": "rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x" }, "product_reference": "rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64" }, "product_reference": "rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le" }, "product_reference": "rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x" }, "product_reference": "rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64" }, "product_reference": "rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le" }, "product_reference": "rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x" }, "product_reference": "rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64" }, "product_reference": "rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x" }, "product_reference": "rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le" }, "product_reference": "rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64" }, "product_reference": "rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64" }, "product_reference": "rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64" }, "product_reference": "rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le" }, "product_reference": "rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le" }, "product_reference": "rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64" }, "product_reference": "rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x" }, "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64" }, "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le" }, "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x" }, "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le" }, "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64" }, "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x" }, "product_reference": "rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64" }, "product_reference": "rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le" }, "product_reference": "rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x" }, "product_reference": "rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le" }, "product_reference": "rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64" }, "product_reference": "rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x" }, "product_reference": "rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le" }, "product_reference": "rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64" }, "product_reference": "rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64" }, "product_reference": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x" }, "product_reference": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le" }, "product_reference": "rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64" }, "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le" }, "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x" }, "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le" }, "product_reference": "rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x" }, "product_reference": "rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64" }, "product_reference": "rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64" }, "product_reference": "rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le" }, "product_reference": "rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x" }, "product_reference": "rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x" }, "product_reference": "rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le" }, "product_reference": "rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64" }, "product_reference": "rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x" }, "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le" }, "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64" }, "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64" }, "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x" }, "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le" }, "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x" }, "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64" }, "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le" }, "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64" }, "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le" }, "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x" }, "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x" }, "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le" }, "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64" }, "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le" }, "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x" }, "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64" }, "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x" }, "product_reference": "rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64" }, "product_reference": "rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le" }, "product_reference": "rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le" }, "product_reference": "rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x" }, "product_reference": "rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64" }, "product_reference": "rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64" }, "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x" }, "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le" }, "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64" }, "product_reference": "rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le" }, "product_reference": "rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x" }, "product_reference": "rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le" }, "product_reference": "rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64" }, "product_reference": "rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x" }, "product_reference": "rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x" }, "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64" }, "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le" }, "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x" }, "product_reference": "rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64" }, "product_reference": "rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le" }, "product_reference": "rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64" }, "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x" }, "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le" }, "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64" }, "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x" }, "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le" }, "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x" }, "product_reference": "rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le" }, "product_reference": "rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64" }, "product_reference": "rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64" }, "product_reference": "rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x" }, "product_reference": "rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le" }, "product_reference": "rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le" }, "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64" }, "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x" }, "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x" }, "product_reference": "rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le" }, "product_reference": "rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64" }, "product_reference": "rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64" }, "product_reference": "rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x" }, "product_reference": "rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le" }, "product_reference": "rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x" }, "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le" }, "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64" }, "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x" }, "product_reference": "rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le" }, "product_reference": "rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64" }, "product_reference": "rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64" }, "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x" }, "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le" }, "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le" }, "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x" }, "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64" }, "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64" }, "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x" }, "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le" }, "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x" }, "product_reference": "rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64" }, "product_reference": "rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le" }, "product_reference": "rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x" }, "product_reference": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64" }, "product_reference": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le" }, "product_reference": "rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x" }, "product_reference": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64" }, "product_reference": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le" }, "product_reference": "rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64" }, "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x" }, "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le" }, "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64" }, "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le" }, "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x" }, "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64" }, "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x" }, "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le" }, "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x" }, "product_reference": "rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64" }, "product_reference": "rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le" }, "product_reference": "rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64" }, "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le" }, "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x" }, "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64" }, "product_reference": "rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x" }, "product_reference": "rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le" }, "product_reference": "rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le" }, "product_reference": "rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64" }, "product_reference": "rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x" }, "product_reference": "rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le" }, "product_reference": "rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x" }, "product_reference": "rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64" }, "product_reference": "rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x" }, "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64" }, "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le" }, "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64" }, "product_reference": "rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le" }, "product_reference": "rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x" }, "product_reference": "rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le" }, "product_reference": "rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x" }, "product_reference": "rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64" }, "product_reference": "rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le" }, "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64" }, "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x" }, "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x" }, "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64" }, "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le" }, "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x" }, "product_reference": "rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64" }, "product_reference": "rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le" }, "product_reference": "rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le" }, "product_reference": "rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x" }, "product_reference": "rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64" }, "product_reference": "rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x" }, "product_reference": "rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le" }, "product_reference": "rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64" }, "product_reference": "rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x" }, "product_reference": "rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64" }, "product_reference": "rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le" }, "product_reference": "rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x" }, "product_reference": "rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le" }, "product_reference": "rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64" }, "product_reference": "rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le" }, "product_reference": "rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64" }, "product_reference": "rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x" }, "product_reference": "rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x" }, "product_reference": "rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le" }, "product_reference": "rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64" }, "product_reference": "rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64" }, "product_reference": "rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le" }, "product_reference": "rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x" }, "product_reference": "rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le" }, "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64" }, "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x" }, "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x" }, "product_reference": "rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64" }, "product_reference": "rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le" }, "product_reference": "rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le" }, "product_reference": "rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64" }, "product_reference": "rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x" }, "product_reference": "rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64" }, "product_reference": "rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x" }, "product_reference": "rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le" }, "product_reference": "rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x" }, "product_reference": "rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64" }, "product_reference": "rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le" }, "product_reference": "rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64" }, "product_reference": "rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le" }, "product_reference": "rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x" }, "product_reference": "rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x" }, "product_reference": "rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le" }, "product_reference": "rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "relates_to_product_reference": "8Base-RHACM-2.4" }, { "category": "default_component_of", "full_product_name": { "name": "rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.4 for RHEL 8", "product_id": "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" }, "product_reference": "rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64", "relates_to_product_reference": "8Base-RHACM-2.4" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-2238", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "discovery_date": "2022-06-28T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2101669" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the search-api container when a query in the search filter gets parsed by the backend. This flaw allows an attacker to craft specific strings containing special characters that lead to crashing the pod and affects system availability while restarting.", "title": "Vulnerability description" }, { "category": "summary", "text": "search-api: SQL injection leads to remote denial of service", "title": "Vulnerability summary" }, { "category": "other", "text": "In Red Hat Advanced Cluster Management for Kubernetes (RHACM) the search-api component is protected by OpenShift OAuth which reduces the impact of this flaw to Moderate. Access to the search-api where queries can be submitted requires the user or ServiceAccount token authorization with a granted access to the resources and managed clusters.", "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": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-2238" }, { "category": "external", "summary": "RHBZ#2101669", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2101669" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-2238", "url": "https://www.cve.org/CVERecord?id=CVE-2022-2238" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-2238", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-2238" } ], "release_date": "2022-06-28T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2022-11-01T19:46:29+00:00", "details": "For Red Hat Advanced Cluster Management for Kubernetes, see the following\ndocumentation, which will be updated shortly for this release, for important\ninstructions on installing this update:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.4/html-single/install/index#installing", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2022:7276" } ], "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": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "search-api: SQL injection leads to remote denial of service" }, { "cve": "CVE-2022-25858", "discovery_date": "2022-09-13T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2126277" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the terser package. Affected versions of this package are vulnerable to Regular expression denial of service (ReDoS) attacks, affecting system availability.", "title": "Vulnerability description" }, { "category": "summary", "text": "terser: insecure use of regular expressions leads to ReDoS", "title": "Vulnerability summary" }, { "category": "other", "text": "For OpenShift Do (odo) product terser is shipped only for using in static page generators for upstream, thus this represents no security risk.", "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": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-25858" }, { "category": "external", "summary": "RHBZ#2126277", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2126277" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-25858", "url": "https://www.cve.org/CVERecord?id=CVE-2022-25858" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-25858", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-25858" } ], "release_date": "2022-07-15T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2022-11-01T19:46:29+00:00", "details": "For Red Hat Advanced Cluster Management for Kubernetes, see the following\ndocumentation, which will be updated shortly for this release, for important\ninstructions on installing this update:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.4/html-single/install/index#installing", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2022:7276" } ], "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": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "terser: insecure use of regular expressions leads to ReDoS" }, { "cve": "CVE-2022-31129", "cwe": { "id": "CWE-400", "name": "Uncontrolled Resource Consumption" }, "discovery_date": "2022-07-07T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2105075" } ], "notes": [ { "category": "description", "text": "A flaw was found in the Moment.js package. Users who pass user-provided strings without sanity length checks to the moment constructor are vulnerable to regular expression denial of service (ReDoS) attacks.", "title": "Vulnerability description" }, { "category": "summary", "text": "moment: inefficient parsing algorithm resulting in DoS", "title": "Vulnerability summary" }, { "category": "other", "text": "Red Hat Fuse provides the affected software but does not use the functionality and as such its impact has been downgraded to Low.\n\nRed Hat Advanced Cluster Management for Kubernetes (RHACM) ships a vulnerable version of the moment library. However, this affected functionality is restricted behind OAuth, reducing the impact to Moderate.\n\nRed Hat Satellite ships a vulnerable version of the moment library. However, this only affects a specific component (qpid-dispatch), reducing the impact to Moderate.\n\nRed Hat Ceph Storage (RHCS) ships a vulnerable version of the moment library, however, it is not directly used and is a transitive dependency from Angular. In addition, the impact would only be to the grafana browser, and not the underlying RHCS system, which reduces the impact to Moderate. \n\nRed Hat OpenShift Service Mesh (OSSM) ships a vulnerable version of the moment library, however, it is not directly used, and as such, the impact has been lowered to Moderate.\n\nRed Hat OpenShift distributed tracing ships a vulnerable version of the moment library, however, it is not directly used, and as such, the impact has been lowered to Moderate.\n\nIn Logging Subsystem for Red Hat OpenShift the vulnerable moment nodejs package is bundled in the ose-logging-kibana6 container as a transitive dependency, hence the direct impact is reduced to Moderate.\n\nIn OpenShift Container Platform 4 the vulnerabile moment package is a third party dependency, hence the direct impact is reduced to Moderate.\n\nIn Quay IO 3.10 and above, no version of affected momentjs is present.", "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": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-31129" }, { "category": "external", "summary": "RHBZ#2105075", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2105075" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-31129", "url": "https://www.cve.org/CVERecord?id=CVE-2022-31129" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-31129", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-31129" }, { "category": "external", "summary": "https://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g", "url": "https://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g" } ], "release_date": "2022-07-06T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2022-11-01T19:46:29+00:00", "details": "For Red Hat Advanced Cluster Management for Kubernetes, see the following\ndocumentation, which will be updated shortly for this release, for important\ninstructions on installing this update:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.4/html-single/install/index#installing", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2022:7276" } ], "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": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "threats": [ { "category": "impact", "details": "Important" } ], "title": "moment: inefficient parsing algorithm resulting in DoS" }, { "cve": "CVE-2022-35948", "cwe": { "id": "CWE-93", "name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)" }, "discovery_date": "2022-08-15T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2121101" } ], "notes": [ { "category": "description", "text": "A flaw was found in the undici package. When requesting unsanitized input on content-type headers, it is possible to inject additional requests via Carriage Return/Line Feed (CRLF).", "title": "Vulnerability description" }, { "category": "summary", "text": "nodejs: undici vulnerable to CRLF via content headers", "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-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-35948" }, { "category": "external", "summary": "RHBZ#2121101", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2121101" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-35948", "url": "https://www.cve.org/CVERecord?id=CVE-2022-35948" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-35948", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-35948" }, { "category": "external", "summary": "https://github.com/nodejs/undici/security/advisories/GHSA-f772-66g8-q5h3", "url": "https://github.com/nodejs/undici/security/advisories/GHSA-f772-66g8-q5h3" } ], "release_date": "2022-08-09T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2022-11-01T19:46:29+00:00", "details": "For Red Hat Advanced Cluster Management for Kubernetes, see the following\ndocumentation, which will be updated shortly for this release, for important\ninstructions on installing this update:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.4/html-single/install/index#installing", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2022:7276" }, { "category": "workaround", "details": "A possible mitigation is to sanitize user input when sending content-type headers.", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "NONE", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "nodejs: undici vulnerable to CRLF via content headers" }, { "cve": "CVE-2022-35949", "cwe": { "id": "CWE-918", "name": "Server-Side Request Forgery (SSRF)" }, "discovery_date": "2022-08-15T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2121068" } ], "notes": [ { "category": "description", "text": "A Server-Side Request Forgery (SSRF) vulnerability was found in undici, a HTTP/1.1 client for Node.js. An attacker can manipulate the server-side application to make requests to an unintended location when they use the \u0027path/pathname\u0027 option in \u0027undici.request\u0027.", "title": "Vulnerability description" }, { "category": "summary", "text": "nodejs: undici.request vulnerable to SSRF", "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-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-35949" }, { "category": "external", "summary": "RHBZ#2121068", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2121068" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-35949", "url": "https://www.cve.org/CVERecord?id=CVE-2022-35949" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-35949", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-35949" }, { "category": "external", "summary": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3", "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" } ], "release_date": "2022-08-09T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2022-11-01T19:46:29+00:00", "details": "For Red Hat Advanced Cluster Management for Kubernetes, see the following\ndocumentation, which will be updated shortly for this release, for important\ninstructions on installing this update:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.4/html-single/install/index#installing", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2022:7276" }, { "category": "workaround", "details": "Validate user input before passing it to the `undici.request` call.", "product_ids": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "NONE", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "version": "3.1" }, "products": [ "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:32c9fc3270f92f52be7a3d6479cdca9627c4b2be5f37a4ffb5854547558d01f8_amd64", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:8ae58edede22501d2651155da21fe094ce1997db8d8c7ee260585d022bab978c_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-grafana-rhel8@sha256:d947f131cf3527bee24fde95e9578eda977272379a1b9b25bbffced0b7ab7265_s390x", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:10f91c9e714089b291330d879bd6f08531eb5e567c20e5b40dfe8effe8fcd6a2_amd64", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:4907fefef6d2427d07962aae5169792f65d1fd8f3f3c429601eb12c0fdb33dd9_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-must-gather-rhel8@sha256:82af465c0a9a6ddcee4b6f783220713883168d893a5c30e3d20ecdd1f7bd9212_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:00a4bbaf666fc9e26859459a2ce30b92e02aa93c9873904f6d1177f135c369c0_ppc64le", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:4e94fc7c80275f1b8f493a7cbbab5a9f39f8a7e031c1b6680862bc6bff0cab09_s390x", "8Base-RHACM-2.4:rhacm2/acm-operator-bundle@sha256:c8f64cdaf49247d26449e5012a0b9d6bcb3ccce53a2881c92a05f0de8306d343_amd64", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:7310607371b23fd401dd11a4d8f169cef64334a98791ee681a8e51dc4aa40bd3_ppc64le", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:ae7845898166d8cdcfe2f49d9c4200aaa0a448f8327c1d9568a18b2640c04603_s390x", "8Base-RHACM-2.4:rhacm2/agent-service-rhel8@sha256:d9c728866e1157b778230104de59f23a259defb918b3f414c6278ec9e95d342e_amd64", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:2f1b3dc0f1d9283f24b6f898afda438d132e983df4442b8929d4a396083474dc_ppc64le", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:b444dc2df0d109616ea92fd6b321ebddb7f8063e88e771419103433002f385e2_s390x", "8Base-RHACM-2.4:rhacm2/application-ui-rhel8@sha256:dd107ca4320aee4d2013d87122aa31714a4b3501118ad492e3ee3822006e562c_amd64", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:0ed96b5d322932db657a64014496c1f1563de9f21f049becd59b86d976caccec_s390x", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:7dbf8df5f88923a7db313f88c58e3c5e89437c5960b6f799cdfc84464ee9cffd_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-image-service-rhel8@sha256:ed2204b626cbb894e65c1fda7b586fd30f549317b01373760bd8658d1ee340e8_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-agent-rhel8@sha256:052b87af33c5dd5592f6db7b201e659ccf28e032c694dc79980895d1c35a15b0_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:07186a9834372812fa53960b64389fbb3fe38bf26c9afaa962600250be8f4e5d_amd64", "8Base-RHACM-2.4:rhacm2/assisted-installer-reporter-rhel8@sha256:6770b5d671bfc7dacf9530357e8009d3536bf9a3b5138adfca7a514433f7bf2d_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:32d927f22fbc42c1dca7875d3e757bcf30fa70f52810eebc94a406e54a80fb48_ppc64le", "8Base-RHACM-2.4:rhacm2/assisted-installer-rhel8@sha256:c425f828749fd87ba2d7c3895ecd97b75c0266158de71d2ae4ad80b886eb8e19_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:01ab599a419096a0552709adf5358e76265a1b638839ca049b6bcd13c9bc98ea_s390x", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:c1e1092e74ec93df9b34e5d625305ebf7992a9fc574e083697f482555eae5d4c_amd64", "8Base-RHACM-2.4:rhacm2/cert-policy-controller-rhel8@sha256:d533bcea3145211d2aa43eb8c445d16d281684c9f56b32be0acc7dc91887668a_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:1226ade84292cd94ded87275fab0541f9951b18b1237581c9d7a0548f14d1e43_s390x", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:821b1abfe1bdec20194a8dce46dfce6e55c6afd02dc061f41d0ad408759204a5_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-backup-rhel8-operator@sha256:cb0559f03e1c60c31e77376a3b936cb8a35ad6144841549018e5ba274ecd7933_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3bb13f7b9de884457d7ed0891bb6e46e903d578bbb61da5b016f48adeef9f113_s390x", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:3cdcfad670f528b7d2c252b2925ecb810c3c844e8d92acd8f7d4768f3b8a9ce1_amd64", "8Base-RHACM-2.4:rhacm2/cluster-curator-controller-rhel8@sha256:d3d3b15908ee325dcb3ac2a5d270a153ae0f8e78736869f016d72dbe62190c86_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:191c9c280d15ff65d206ae94e038c6feba67760b6feae354986cc42595a93e89_s390x", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:32b53f5aa5b5d1a0e68b5cc08ad215fa5ea91659f6ad01ac3f1b88940dd5ed9d_ppc64le", "8Base-RHACM-2.4:rhacm2/cluster-proxy-addon-rhel8@sha256:50e074e4c8baf582b886727fe5180a12fcc0a5a3da1d02996aaacb8c225e08e9_amd64", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:657aefd5c78386b25793c16a98545b2597c5a0899622990043f68a9f41948b72_s390x", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:8db5e24ee30847921173ae3050bc2e0aaf07b9decaeec5f043bbbd8aaa8e1cfd_ppc64le", "8Base-RHACM-2.4:rhacm2/clusterclaims-controller-rhel8@sha256:ae1d3dad661df287febbce9cde877caac3169a07cfbfcdd020689c4e9bed56b7_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:5f480578f5073fef7f65801e7f845e6a3045b8fa1d1e6cd4d5e64bdc3ce8e007_amd64", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:d2c5474848a1202fb7eeb2e08632707d32b965dc273317bdda10d5c01b2e2593_s390x", "8Base-RHACM-2.4:rhacm2/clusterlifecycle-state-metrics-rhel8@sha256:f86978425427d65f6c2c42d374c16ed50e28be8983d1a6acc6eec5674d576fa1_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:4ae9b19f779bbfaefa1fbe50f73512b08b6e9ab6bfb70ada6f2a42153d5dc96c_amd64", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:ef2202eca66b28836ed657b0dc65b49724a29a29fb8cd0f1069a20cb86115848_ppc64le", "8Base-RHACM-2.4:rhacm2/config-policy-controller-rhel8@sha256:f067e7433dc6f4d7c31010a970db5bf676caab95fd6b1a12377ad7337a65ed5e_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:a89a6d67f83f83b639d1c00acaec846add6c4e4f9a975f38068c30911e686a2a_ppc64le", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:c1ab80e820de59acbce7b35764af0a4d3a81a07a63f8ec238dbbb62ed103d200_s390x", "8Base-RHACM-2.4:rhacm2/console-api-rhel8@sha256:db4689522168982655615117f4321abfdf250bbe868817fb3fb68ff7ca93c961_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:13dc1e39c172f23f5a0731f7754211ecd8d9fcd64ca4d037c5f90c7e2197dc98_amd64", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:560d05a7239ae1e70083fea16eebe8fbade8f23ad0f5e5a9d13b82630b5889a3_ppc64le", "8Base-RHACM-2.4:rhacm2/console-rhel8@sha256:794f5eb53a3cc9e2c4f23a9ac24e40f41af362a1eae6c9bb1ff316a2db613756_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:4bde8f661f7feb27ccc21224ab7363bf67e4b7e245acc627b938b10892e5a948_s390x", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:9b199e70daa25f20b84aeae6f96df3114823d0cb53064160cd229dbfedf39277_ppc64le", "8Base-RHACM-2.4:rhacm2/discovery-rhel8-operator@sha256:e781e3485395e7aa927b6fc75de0ddc24218151aaa87d29fe8ffa91c3ff5d6ae_amd64", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:37fb13575e208ddd4dfc30d2d0dcd6fd28a1048f79c73246aeb71664bddd3978_s390x", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:70461fa79041832d5fdefb39f4bab18c3cad47f155ef38c346362a6d8e63bbe0_ppc64le", "8Base-RHACM-2.4:rhacm2/endpoint-monitoring-rhel8-operator@sha256:fbdc73eb20270cbb8002d22c8f10a461ac73cd78b937ccc730961d4985e0df9c_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:411fff327b55318320df08fb092385891435d2addbe3d28c72e90531ce9eda30_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:a7266160ac78ef496abb0a6203f60633523836a6992de453a58dca0ecb744d9a_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-propagator-rhel8@sha256:dadc81d2fa4d258becac24a8fe3230c73c5b8f2646d4c579189d154ae18953f7_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:2d0459d9280c3dbf7ed426e06a262a07fc59555b6853fff3c209f472113513fa_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:8a65336671b021e9c24e72f363f64da1d8826af4ffb8c0ee8a698746ff8ac513_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-spec-sync-rhel8@sha256:97fbd15ca9079f07e4c5e31f93d41e699ac195b94134bd95648a5882e8588089_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:5bfc9a8a4c73bd57395e8a7a2b0113beef584fc08dbcd1f07ec37347310e1d57_amd64", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:78b1424c742b1afef3409978a2c7372b0b3fa457b0ae2dc014db484f29cdebd0_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-status-sync-rhel8@sha256:a985b9f7f02f7042c15b95c5fe488061c64d999d266e56baef5d40a3af2e33d5_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:3c1b100b6bc6ed1e8d1185b70ca290aab40b570d1a4ad2ea5ed68695be2dfb66_s390x", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:c58f2468c536527de1c669c0d851646ce30bdf00a303b42483a9425c30deae99_ppc64le", "8Base-RHACM-2.4:rhacm2/governance-policy-template-sync-rhel8@sha256:f4de01d657c806a58a2145434e0e4ab81a9f58b701fcd2265bf9b9ecbb47214e_amd64", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:95dad2b96982c6269cbcee84592182f6dc5e68023ef70fbb187821771234c6c5_ppc64le", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f62b16acc6b95f0efa4ee36be66a7f7e07484402fc4aa15bf2560ed3f5caead9_s390x", "8Base-RHACM-2.4:rhacm2/grafana-dashboard-loader-rhel8@sha256:f80a6b990a90e8b91d702e2021af913f30a04787fea0402ba87c18fec15ddacd_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:18ce7de3ecdb08ce0bd06f3a94760133043bf881c746e448798c1836fea1b263_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:325638ba1cb87b85dac0c3e2eb483a6f47daa58304ed361679c17c7c466d2d06_amd64", "8Base-RHACM-2.4:rhacm2/grc-ui-api-rhel8@sha256:602dfca08e34fc4f161c8801787d689210ac28cc220920bd6a35dd54d4da3a46_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:01146a816db0a7f0c3facae45b6f45df255e94b45224f9c56a63a58566b46dd6_ppc64le", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:8949998bedc18fea3441d36f1b9bf0e0109ed24de760c2313c485620e8e9f676_s390x", "8Base-RHACM-2.4:rhacm2/grc-ui-rhel8@sha256:d2d4f6caeae99f6fc67a05e10a70857e90187e18c46f074a320579336137b057_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:0224a2a5f214b8142022807e983aebbed991ea45819bea4c051e85849c268029_amd64", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:11a7de8cbd1b8a1e5a44442b8f9e9a5d72f5f05f37073018ce70e48d20cc3dc7_s390x", "8Base-RHACM-2.4:rhacm2/iam-policy-controller-rhel8@sha256:54ae484fc62d6f6f80271d009f0e6dc963b6678c610ff50e9a296d4a7bb14fa3_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:60dd186dd4f2b5b5443fa07bedc087021e86c6d896527b1886b5618b891f458c_amd64", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:9710f8f87446f09d5f15c913cfe4134303d5745a52b7022d65a64b8d2bc454dd_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-client-rhel8@sha256:ff35a1cb8910086d4d3b8e1a96cc9ac0898c8900fe5fc4f675816201bb08f9f8_s390x", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:3cb1a7d1ea2f68c7b99764684b536ea32506c7f3bd22e44f6eb801dd006fee29_ppc64le", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:50adf0d0db4d45b9d18ca32aa0d78759cc83cc2ec47dc306375a5ab58490e751_amd64", "8Base-RHACM-2.4:rhacm2/insights-metrics-rhel8@sha256:73b18032050b14d3d934bffb75881cb957e319a98060aa04390c5876c8eafa2a_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:95a3d244961b00d485d39122d56e63f6120aae7bdbbf0b120ff3686262c995d6_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:a3f7d4b70597922604bb0b17e540086e2bab161d78926ee4aca4b18a96285307_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-controller-rhel8@sha256:e7799ebaabb94643651243fe3ccb2f4d797d27eaf1d6408fcd821b96061f8c21_ppc64le", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:4056c6c032d3b68d31f5c151035fbf1879ab92c857d1b681717fd413cbcb504e_s390x", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:c9145f2ece733429ebbf1fd685d74fbd8c93004c1dcc1cc3b3bbc8d909ecb601_amd64", "8Base-RHACM-2.4:rhacm2/klusterlet-addon-rhel8-operator@sha256:e76355950fa88ff3f061b323d1825236f7eff0741067bbcf9ac41bf321577aef_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:10ddba0bf37b616c569f277a29a9b25b282d8df8472a702705e742948b718d54_amd64", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:42ac4c568338a3618452d739372dd7a64ec1b64839107c09bb3d650a75e3a8f1_s390x", "8Base-RHACM-2.4:rhacm2/kube-rbac-proxy-rhel8@sha256:7eff13e65c57d60f9dc2f34aa2cdfa04bdeafef231a3f325cbabc08fc6a2f5ce_ppc64le", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:89ed9e849531c4c4896f3d0b933faeb09f28d93228b21e13830cb7317818a082_amd64", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:e549b9d8fe3b7c5b3011af5d5cb8301939804f5212845e48e8dd130af155d106_s390x", "8Base-RHACM-2.4:rhacm2/kube-state-metrics-rhel8@sha256:fcce95855a894d74c5b3a096dc327b873dab7bed08c8949133d87058ab1ff402_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:4d3c2da2a105d6053248b2b4f5cd9850d61050ac5df82d1ebd787f9ea7ace86a_s390x", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:96e2a59d704e9395690bb948b562a74d793a7ddfc7ac0bb688af9934ba55f0c4_ppc64le", "8Base-RHACM-2.4:rhacm2/managedcluster-import-controller-rhel8@sha256:a92173aff85efe0c92313db2017068fa060d8a08d8867d515ece15bede4f5b15_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:231c1c0729f21a86fef11c73c79c1f0e52214a39d3ca755a66c1d37dd47087f5_amd64", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:2cab079a51e86f0365151707ef6efb93d4cb4bfdc2c0a450d83437f364e2425f_s390x", "8Base-RHACM-2.4:rhacm2/management-ingress-rhel8@sha256:6ec2c28c574f945881e07619e6fdf0e12bd66d0d2fc5bfaed4c49061b70a57c3_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:3b6c371f99e63f1d2844d0956ce256d063535be11c4819d4be904312753a3825_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:9bed178e476034fa1e036b3001773bd9b200a2025084676e20f7ca5d72c7350c_amd64", "8Base-RHACM-2.4:rhacm2/memcached-exporter-rhel8@sha256:a11feedc184f76ca7e873577931e447105f0b4fec82dcbdd82510c64604fcdeb_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:04d4d7b843498a216a71e4f9d071d859ee5fd020f8bcc20645a8bf46a9d05916_s390x", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:4910556b7029dc686efc6ba1388366c1ec271aa9fc4a621bbaac26740219e7c1_ppc64le", "8Base-RHACM-2.4:rhacm2/memcached-rhel8@sha256:6cf1edeb07e6fa79a1e4d66341f72e5ca45cb7fb7fa88dc491e48a23b768d06b_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:0640b7b591fc721c4eee8b5d67e581169e7a9732eaad14f9d2db5e9421d2f216_amd64", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:06c48e218435f19aecfddc15fa3b082432dae00f12209018c5b443e8a6679959_s390x", "8Base-RHACM-2.4:rhacm2/metrics-collector-rhel8@sha256:bcbb98fd2f4dfe1471749665671eff239a691fe9fbb03fcc60afe69ab3b2457a_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:381f1a513edf9ab366b92a4a03deaa09de8f96b771c86927521e63487112db5d_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:43bffb986bbbeb7e8e7504f00346545170af01b52a0d33a3bdd3af18f12338b5_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-integrations-rhel8@sha256:4d42793b8e1d5e642e0ef1271e5d1a0bedbbfaa61933558c412fd03d21b36471_amd64", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:6bcfb3260612e0e7cf4833c6a4f873c97f35a02ca14d289fffe57fb8cc5e16ab_s390x", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:afc2691efb882c5c07a0d24365bbffcc44153cd3243aa70d211db9a6cb57e19c_ppc64le", "8Base-RHACM-2.4:rhacm2/multicloud-manager-rhel8@sha256:e5b5979f55142cc57518a8c6e66b90a4e766c3d0e8f2f4493771d3ebb82d2f7a_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0af0aca479f6670b562882545d4d542f7a068aed2355bb2bc8888343b902f2cc_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:0f503a808655cb8382e1351e1810b3a575db54f9b425637a65e6743daae0e479_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-observability-rhel8-operator@sha256:46235794f1c8e7bee3b35f95a0c1b4cce1d70987b48d55925eac4d2c8d1d8d6d_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:02209b7ccb537ae084018512da601fd3363c33010d10f5e81adce294a5a08a14_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:6531f1b08dca544cb1183b1a77a6c15b87cf38c55c9f56827de3eb0c83d1cf5f_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-application-rhel8@sha256:bdf6d43ec634ef72329283856095a4001cb9ab53aabb3080b3b5385113d8bcd9_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:36f9d01e67fec70a5a1641a9b2c5862c6ff09d0dc9ed914df0b9edf3798747a7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:bfd0c333e8a5f834f2eec948209da932f03378b3cffb7091524cb3496675418c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-channel-rhel8@sha256:e09f809361c6a1c99f28bd149a3551cec5ed1583507de180fbcb91c509847748_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:21405730da41f7189a30727067c655a88a23ba7dd41d13d7d7a842699ea3afd6_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:4cb6adb16bca8a109b1171904d79c6867225aa7cb53f2ea8e8f028de40f130f7_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-deployable-rhel8@sha256:5fc90e808d20d2d47cae5fd908940ca30adc06e7482c3cb077b024d79c8e7e65_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:27d9be23e6f81da2ee3014a8eb1704f7d97dcadd7a2ce8a4db48b7c50a1f562d_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:3daafd5ca233b3733bcfe324e8cd48a9791a8018d2f4bcf0254c3ffd3f11a63c_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-placementrule-rhel8@sha256:a69ca5d013a9f8cc0a1e7b45e96c2f7cb31a8232661643185bdedfc0f458a177_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:7957e99ea9d2b47fca9d6e3fbc34bd6167aabe370560e110208cdbff2a2e6b3c_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:ab6467e71011c4fe3b19ce7ac00fb21ac19027804b5c0119c6b09a951ec2c159_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-release-rhel8@sha256:d8181ce21267cab606a92813fdc846d2521fbb01c15b644bbc956b75d5100c57_ppc64le", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:3de848f189c7875b263bd12f964b1b4b30ad0a371eb0ed106565071c5778ac3d_amd64", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:44930d8d286e0db009dcbb44b26c630ea5fe430ccd65fc9404129a56be220e0b_s390x", "8Base-RHACM-2.4:rhacm2/multicluster-operators-subscription-rhel8@sha256:d283946f7809b448300c090469ede2fd2e111e9a65f618a296e6a68f5d014bfa_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:929a19ecbd80f0c928b9b7e1852fb00f5fc683c575f53cc12ebeaa5c3d4a3cab_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:b561c4a50c6fe526e38ecd5dabc51c1a788a31fea5eee3319455c0ddefbc6a99_ppc64le", "8Base-RHACM-2.4:rhacm2/multiclusterhub-repo-rhel8@sha256:c53145190d2fb3c27bbb030311142d214bdc27530a75a8f1c0da649909e197ba_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:02b7f62bebb81cd3ea5806c136d204eb22875c3175ebb14086304769393dc6ea_amd64", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:0689509be38d8a05d20accacbd8d6a3f1e42cb11f1716accbc1edd2b26940ffe_s390x", "8Base-RHACM-2.4:rhacm2/multiclusterhub-rhel8@sha256:7a6b528d838f360ecdb3972a408dab5291e09ec0cc19f804d847fd159a389d3b_ppc64le", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:1c683214b7e1495b8652a7936022366623ec9ef8774c5839ef21e837baa998a2_s390x", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:917cfba6fde327672eafd1061f4d0b5eacf330d66d0d57ef8817b220f9eea6ca_amd64", "8Base-RHACM-2.4:rhacm2/node-exporter-rhel8@sha256:d6511ec34861a4a8bd71a6392fe22d1f8484a13f8a6917de1f5045eeaecb5c87_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:cfa543ad763ffca3ad08d1b0ab587a4bc54b81434cc0650a12d3f4623a3f072a_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d066c2db98c462ce2bdfd5396a8615d266f52ed8546bf517ef0f4804048fc194_ppc64le", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8-operator@sha256:d8d900499630908a22df80f63b14b97da9148d1dd41f3ea835315e7912e8cc1e_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:07c1b4d516e009581e4ec6e10aee5a3ce96d7b5a96f523846532624803e593cb_amd64", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:ab7c977e16bee222741ecaaf33ef1c5f977eaf27a0f8cdd7ee6bdc3e39889e14_s390x", "8Base-RHACM-2.4:rhacm2/observatorium-rhel8@sha256:b3f85ad78513226ccbb285c5f69c3d4f06e5491e4c4b526c5a91e40ce801e176_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:0dd971bac05d141385773016abe71e4cc9b5dc0ebaa0c30578700e57baca37f8_ppc64le", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:3f605c23c7a788a89dad1835bccbfb7b5760cae399d1e1e153837065721c8879_amd64", "8Base-RHACM-2.4:rhacm2/openshift-hive-rhel8@sha256:865b5e310d3742a7e4b700fead0249ead9241c8db359250eb6c0ee72c7d2b736_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:48d59b9edde75f28f9c155ae7ae8fc9e5be5129af3514fd963aa2152a2383c67_ppc64le", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:8e89fff487590986d0c27c458019fddae9acb7b66a9c50920c3d0cce31a7153c_s390x", "8Base-RHACM-2.4:rhacm2/placement-rhel8@sha256:bf8d218058c60fdf97de628dd1ae4088791235976430d434676719cb0662c37d_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:080146c562f1cc7e30debb259feb0a6a9fbc30acad2f1e5b7a5a477e820e26b2_s390x", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:1101e21827ce2bc938c35e6775a9c7504c83c1afecbe75de3b61377ffcd9d816_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-alertmanager-rhel8@sha256:d8d09933a8b39aa964edcdd0aa0c5696089d28140c7a483d51767e211c9694fe_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:69f92cc65e890baf48fbcf3617feff86795a5917a6340977daf1e9903b0ff84f_amd64", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:756452044c7e82d1dd0df012a09f67265aae67910ad688098a2a91b81d624e93_ppc64le", "8Base-RHACM-2.4:rhacm2/prometheus-rhel8@sha256:ac7ab93692b918497f6779d8e1a40ad2280b6ffab4beaff0d0f2e63946c52cb6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:0395e1c3ef80301970bba9f1cc3611a4c3e8e34aacb292fcda02661a72fb271b_ppc64le", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:69701abfa8b1d743dca559f6a9faef7a9e1600b3c401b3b9d8518c5d730a32d6_s390x", "8Base-RHACM-2.4:rhacm2/provider-credential-controller-rhel8@sha256:706c31bfd2a3fea8bc2daa5f2c5cb72bcc88e9589530bc1e9e118dfedf65565d_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:7f0846467d8ea8d0b8c7a5aa023826d7714b06982b5b8e75797960f844d97442_ppc64le", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:89081393a8362f80ec2280f0da220a9909b5a2ea08a6edfe21a8557621c94c8f_amd64", "8Base-RHACM-2.4:rhacm2/rbac-query-proxy-rhel8@sha256:c54bb112e665709bb966df6ac4f77a2c8281a3984ed253fc661c51513c2589e4_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:3924195f987335c19b8b07d79e0c222568755631f63a656e63fa2d29b40b455e_s390x", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:afb8138b77933915fe30332a7a5eaec37a50d6cec94b6950ae2c3e87b940ac9d_amd64", "8Base-RHACM-2.4:rhacm2/redisgraph-tls-rhel8@sha256:f0fd6b2a46e1fe8cfc61150767f5c48bf0e4c069e0b902425e160acfb64270fa_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:2ca23c45ac824b40380749dd8761462789a16bc300df416f61deb5ed968d0f6b_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:487a8068b02826d51da0b51e440f937d45c40ad3659097e76c1f86f40644e774_amd64", "8Base-RHACM-2.4:rhacm2/registration-rhel8-operator@sha256:c2a698340e579c82cfec299464237e8c4db6f6fc459de0059d1adf0a4a7285cd_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:73a0aeeb2cd4b03854d09004a6b0291a8a900ba663650a82523fb08e2b3dae72_ppc64le", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:87a9de7b19ac2f6af88cf6e20a6630316bd1fe93ac555af909232d7bbb75c228_s390x", "8Base-RHACM-2.4:rhacm2/registration-rhel8@sha256:f9871e12259fa2b0deb75abb0a9852fc8eb6ca6e66e920e63f5b7cccc038db64_amd64", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:929d1920c402cad85b6b1087cf9fda85b462ec47863b4fc4484989bb6dc446aa_s390x", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:ccb7fa3acc502999a374376ab1918fe5957800f779d5a03a7ca544e6ae06cc7d_ppc64le", "8Base-RHACM-2.4:rhacm2/search-aggregator-rhel8@sha256:d9d949342640ac7e3a6cdf49e8885be1da6b86cd4f2c5a019861b3d335791f49_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:678d932ddf7f29f9ae59abd93555ead34799f188feee00f1ebb3d7f428189402_s390x", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:e5ddbd08d5687a13af236a5b1980f845d470ca57e4e095e0ea8e379c8d5c5a5d_amd64", "8Base-RHACM-2.4:rhacm2/search-api-rhel8@sha256:faf1fe6ddaf8f67bdacb41c084e95a7b429cc34bec3285955b1ec672f11774b5_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:07a4dc970b86785e6845d4c7aa0824321452d19fea25052993a85de47df77703_s390x", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:28e8d1d581292ced33f8e7126441b7a00aba07677165642a26bc2538418ffb41_ppc64le", "8Base-RHACM-2.4:rhacm2/search-collector-rhel8@sha256:549dc362d7dc08564fa8d4062d6b20ab43034d16e53265eab5af4dc004a8fde7_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:7968d82d6eae8e9381a414a0c0074c7d6a9883bc17e5a120b920cc010e89f95f_ppc64le", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:b698be80268aac47cd50fe7e2f626399e546ba7ae1ac456133d014e32c955ed1_amd64", "8Base-RHACM-2.4:rhacm2/search-rhel8@sha256:d2ff9a230d66ccacb5d6cca873008ba8625968cbc377c5feb405de24006c1db5_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:4a566ae4eb6e2200abe26d6915e50a6acca0626c5c5f192360aad67a2c09035c_s390x", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:9092b0fdc4a0914a76795fe1554767d35dd1e9497b985095c4a3a816f84afeef_ppc64le", "8Base-RHACM-2.4:rhacm2/search-ui-rhel8@sha256:c13c9e3b4d570903ec57ea46930580db37459b4374294f23defa67d05b3572b6_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:66aa4ecd457e9916ea6173f6dba10f98b077be93ebced7b67c52859b394e2a74_amd64", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:f2995ddf6d561e3777f4510d51b8e60fdd3aeacde356c36e942bc18d7ffb11d0_ppc64le", "8Base-RHACM-2.4:rhacm2/submariner-addon-rhel8@sha256:fa61f4ec40c137ff16b932f56ef2afe1d2dfe52f636d1718f078e4dc56591246_s390x", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:55e0fd04826b065eaa990031ce8b110c021299dee72b432f66f743f01d1d8228_ppc64le", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:81b27dad3f889c0afccc2786b1107bcabe663b1547ff676afb6d41bd65f24b28_amd64", "8Base-RHACM-2.4:rhacm2/thanos-receive-controller-rhel8@sha256:f72b05ad3ed690c6f70d8c2ac9754d33d334e234691b088ff7ac9540ebc784e9_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:08d271440c91e7d28083c20cef01f4b3cdb97c2deb57b0da16bef9486fff49cb_s390x", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:eca9e75f1a70ed57a925d1258060dd07b68e957a83d0d88cf878f8050a1a2d89_amd64", "8Base-RHACM-2.4:rhacm2/thanos-rhel8@sha256:f31eeaf789871dad496206cc5df1ffd8b53fee60e135243f6519c40ee20b6572_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:08dfec54406c5e17c0a4c174d3451d9e3b4c8e480cdcde0941bc2e0017cfc171_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:62c0f5a2e29f6d2c36d01d973c720549a3a94ad9f3ff0ae3e820421b25ba63e8_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rclone-rhel8@sha256:7ff3dda6f4d5cf7a8cf66ac984ba9de6dee43510044293e07a5df8f3bd60c3b7_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:24579a26ad25e2ce0ce15cc02984fae41430fb1a33062b31dfb4aaf564743088_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:429d6bc589da7813f82d780bf94dc69161c2efb61f2198e471689daaf9dbc013_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-restic-rhel8@sha256:a61e18b5156b300bfa450f873891ceb2c966455b7136ced295c5673ee2d93288_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:1911b33c916650a025e65f91aac5c921c6519558cbad622d95e5fa2bd3c91b02_s390x", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:42ae799d386d45fcba18b7a00a8618badd92c39e5aa7fedf5dafe2935a00138b_amd64", "8Base-RHACM-2.4:rhacm2/volsync-mover-rsync-rhel8@sha256:4c11352c9902cf392e0807cf87766c1816a983412e6887364ef85e9519c5331b_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:427cc373a77bd38b83e2a07b484f8276134839fafe7d475747c75883c9949705_amd64", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:667da6d4c2930947864a9317de8f551185f7463cbcd3dabf9b9c38bb5abe239d_ppc64le", "8Base-RHACM-2.4:rhacm2/volsync-rhel8@sha256:91fb4f76def407e58e583e369cdd1be5ac2c8be86e3a1b3102258483520bb582_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:0665de24947b6f71e0f42784f279292b00d6a02b070bbc6fe80fbd9319208712_s390x", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:14460282e660a3f239b503414d8b3a37dc7c68b2c9b3a6764ec2140aa0819fbf_ppc64le", "8Base-RHACM-2.4:rhacm2/work-rhel8@sha256:9481490b72e6cc4ec6646ac29ab3fea3a63bbd6f6bd6ea1ec1fe8f8af09e2646_amd64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "nodejs: undici.request vulnerable to SSRF" } ] }
ghsa-8qr4-xgw6-wmr3
Vulnerability from github
Impact
undici
is vulnerable to SSRF (Server-side Request Forgery) when an application takes in user input into the path/pathname
option of undici.request
.
If a user specifies a URL such as http://127.0.0.1
or //127.0.0.1
js
const undici = require("undici")
undici.request({origin: "http://example.com", pathname: "//127.0.0.1"})
Instead of processing the request as http://example.org//127.0.0.1
(or http://example.org/http://127.0.0.1
when http://127.0.0.1 is used
), it actually processes the request as http://127.0.0.1/
and sends it to http://127.0.0.1
.
If a developer passes in user input into path
parameter of undici.request
, it can result in an SSRF as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL.
Patches
This issue was fixed in undici@5.8.1
.
Workarounds
The best workaround is to validate user input before passing it to the undici.request
call.
For more information
If you have any questions or comments about this advisory:
- Open an issue in undici repository
- To make a report, follow the SECURITY document
{ "affected": [ { "database_specific": { "last_known_affected_version_range": "\u003c= 5.8.1" }, "package": { "ecosystem": "npm", "name": "undici" }, "ranges": [ { "events": [ { "introduced": "0" }, { "fixed": "5.8.2" } ], "type": "ECOSYSTEM" } ] } ], "aliases": [ "CVE-2022-35949" ], "database_specific": { "cwe_ids": [ "CWE-918" ], "github_reviewed": true, "github_reviewed_at": "2022-08-18T18:59:46Z", "nvd_published_at": "2022-08-12T23:15:00Z", "severity": "MODERATE" }, "details": "### Impact\n\n`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`.\n\nIf a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1`\n\n```js\nconst undici = require(\"undici\")\nundici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"})\n```\n\nInstead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`.\n\nIf a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL.\n\n### Patches\n\nThis issue was fixed in `undici@5.8.1`.\n\n### Workarounds\n\nThe best workaround is to validate user input before passing it to the `undici.request` call.\n\n## For more information\nIf you have any questions or comments about this advisory:\n\n- Open an issue in [undici repository](https://github.com/nodejs/undici/issues)\n- To make a report, follow the [SECURITY](https://github.com/nodejs/node/blob/HEAD/SECURITY.md) document\n", "id": "GHSA-8qr4-xgw6-wmr3", "modified": "2023-01-18T21:52:48Z", "published": "2022-08-18T18:59:46Z", "references": [ { "type": "WEB", "url": "https://github.com/nodejs/undici/security/advisories/GHSA-8qr4-xgw6-wmr3" }, { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-35949" }, { "type": "WEB", "url": "https://github.com/nodejs/undici/commit/124f7ebf705366b2e1844dff721928d270f87895" }, { "type": "PACKAGE", "url": "https://github.com/nodejs/undici" }, { "type": "WEB", "url": "https://github.com/nodejs/undici/releases/tag/v5.8.2" } ], "schema_version": "1.4.0", "severity": [ { "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "type": "CVSS_V3" } ], "summary": "`undici.request` vulnerable to SSRF using absolute URL on `pathname`" }
opensuse-su-2024:12285-1
Vulnerability from csaf_opensuse
Notes
{ "document": { "aggregate_severity": { "namespace": "https://www.suse.com/support/security/rating/", "text": "moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright 2024 SUSE LLC. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "corepack16-16.17.0-2.1 on GA media", "title": "Title of the patch" }, { "category": "description", "text": "These are all security issues fixed in the corepack16-16.17.0-2.1 package on the GA media of openSUSE Tumbleweed.", "title": "Description of the patch" }, { "category": "details", "text": "openSUSE-Tumbleweed-2024-12285", "title": "Patchnames" }, { "category": "legal_disclaimer", "text": "CSAF 2.0 data is provided by SUSE under the Creative Commons License 4.0 with Attribution (CC-BY-4.0).", "title": "Terms of use" } ], "publisher": { "category": "vendor", "contact_details": "https://www.suse.com/support/security/contact/", "name": "SUSE Product Security Team", "namespace": "https://www.suse.com/" }, "references": [ { "category": "external", "summary": "SUSE ratings", "url": "https://www.suse.com/support/security/rating/" }, { "category": "self", "summary": "URL of this CSAF notice", "url": "https://ftp.suse.com/pub/projects/security/csaf/opensuse-su-2024_12285-1.json" }, { "category": "self", "summary": "SUSE CVE CVE-2022-31150 page", "url": "https://www.suse.com/security/cve/CVE-2022-31150/" }, { "category": "self", "summary": "SUSE CVE CVE-2022-35949 page", "url": "https://www.suse.com/security/cve/CVE-2022-35949/" } ], "title": "corepack16-16.17.0-2.1 on GA media", "tracking": { "current_release_date": "2024-06-15T00:00:00Z", "generator": { "date": "2024-06-15T00:00:00Z", "engine": { "name": "cve-database.git:bin/generate-csaf.pl", "version": "1" } }, "id": "openSUSE-SU-2024:12285-1", "initial_release_date": "2024-06-15T00:00:00Z", "revision_history": [ { "date": "2024-06-15T00:00:00Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-2.1.aarch64", "product": { "name": "corepack16-16.17.0-2.1.aarch64", "product_id": "corepack16-16.17.0-2.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-2.1.aarch64", "product": { "name": "nodejs16-16.17.0-2.1.aarch64", "product_id": "nodejs16-16.17.0-2.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-2.1.aarch64", "product": { "name": "nodejs16-devel-16.17.0-2.1.aarch64", "product_id": "nodejs16-devel-16.17.0-2.1.aarch64" } }, { "category": "product_version", "name": "nodejs16-docs-16.17.0-2.1.aarch64", "product": { "name": "nodejs16-docs-16.17.0-2.1.aarch64", "product_id": "nodejs16-docs-16.17.0-2.1.aarch64" } }, { "category": "product_version", "name": "npm16-16.17.0-2.1.aarch64", "product": { "name": "npm16-16.17.0-2.1.aarch64", "product_id": "npm16-16.17.0-2.1.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-2.1.ppc64le", "product": { "name": "corepack16-16.17.0-2.1.ppc64le", "product_id": "corepack16-16.17.0-2.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-16.17.0-2.1.ppc64le", "product": { "name": "nodejs16-16.17.0-2.1.ppc64le", "product_id": "nodejs16-16.17.0-2.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-2.1.ppc64le", "product": { "name": "nodejs16-devel-16.17.0-2.1.ppc64le", "product_id": "nodejs16-devel-16.17.0-2.1.ppc64le" } }, { "category": "product_version", "name": "nodejs16-docs-16.17.0-2.1.ppc64le", "product": { "name": "nodejs16-docs-16.17.0-2.1.ppc64le", "product_id": "nodejs16-docs-16.17.0-2.1.ppc64le" } }, { "category": "product_version", "name": "npm16-16.17.0-2.1.ppc64le", "product": { "name": "npm16-16.17.0-2.1.ppc64le", "product_id": "npm16-16.17.0-2.1.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-2.1.s390x", "product": { "name": "corepack16-16.17.0-2.1.s390x", "product_id": "corepack16-16.17.0-2.1.s390x" } }, { "category": "product_version", "name": "nodejs16-16.17.0-2.1.s390x", "product": { "name": "nodejs16-16.17.0-2.1.s390x", "product_id": "nodejs16-16.17.0-2.1.s390x" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-2.1.s390x", "product": { "name": "nodejs16-devel-16.17.0-2.1.s390x", "product_id": "nodejs16-devel-16.17.0-2.1.s390x" } }, { "category": "product_version", "name": "nodejs16-docs-16.17.0-2.1.s390x", "product": { "name": "nodejs16-docs-16.17.0-2.1.s390x", "product_id": "nodejs16-docs-16.17.0-2.1.s390x" } }, { "category": "product_version", "name": "npm16-16.17.0-2.1.s390x", "product": { "name": "npm16-16.17.0-2.1.s390x", "product_id": "npm16-16.17.0-2.1.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "corepack16-16.17.0-2.1.x86_64", "product": { "name": "corepack16-16.17.0-2.1.x86_64", "product_id": "corepack16-16.17.0-2.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-16.17.0-2.1.x86_64", "product": { "name": "nodejs16-16.17.0-2.1.x86_64", "product_id": "nodejs16-16.17.0-2.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-devel-16.17.0-2.1.x86_64", "product": { "name": "nodejs16-devel-16.17.0-2.1.x86_64", "product_id": "nodejs16-devel-16.17.0-2.1.x86_64" } }, { "category": "product_version", "name": "nodejs16-docs-16.17.0-2.1.x86_64", "product": { "name": "nodejs16-docs-16.17.0-2.1.x86_64", "product_id": "nodejs16-docs-16.17.0-2.1.x86_64" } }, { "category": "product_version", "name": "npm16-16.17.0-2.1.x86_64", "product": { "name": "npm16-16.17.0-2.1.x86_64", "product_id": "npm16-16.17.0-2.1.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_name", "name": "openSUSE Tumbleweed", "product": { "name": "openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed", "product_identification_helper": { "cpe": "cpe:/o:opensuse:tumbleweed" } } } ], "category": "product_family", "name": "SUSE Linux Enterprise" } ], "category": "vendor", "name": "SUSE" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-2.1.aarch64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64" }, "product_reference": "corepack16-16.17.0-2.1.aarch64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-2.1.ppc64le as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le" }, "product_reference": "corepack16-16.17.0-2.1.ppc64le", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-2.1.s390x as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x" }, "product_reference": "corepack16-16.17.0-2.1.s390x", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "corepack16-16.17.0-2.1.x86_64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64" }, "product_reference": "corepack16-16.17.0-2.1.x86_64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-2.1.aarch64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64" }, "product_reference": "nodejs16-16.17.0-2.1.aarch64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-2.1.ppc64le as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le" }, "product_reference": "nodejs16-16.17.0-2.1.ppc64le", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-2.1.s390x as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x" }, "product_reference": "nodejs16-16.17.0-2.1.s390x", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-16.17.0-2.1.x86_64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64" }, "product_reference": "nodejs16-16.17.0-2.1.x86_64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-2.1.aarch64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64" }, "product_reference": "nodejs16-devel-16.17.0-2.1.aarch64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-2.1.ppc64le as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le" }, "product_reference": "nodejs16-devel-16.17.0-2.1.ppc64le", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-2.1.s390x as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x" }, "product_reference": "nodejs16-devel-16.17.0-2.1.s390x", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-devel-16.17.0-2.1.x86_64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64" }, "product_reference": "nodejs16-devel-16.17.0-2.1.x86_64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-2.1.aarch64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64" }, "product_reference": "nodejs16-docs-16.17.0-2.1.aarch64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-2.1.ppc64le as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le" }, "product_reference": "nodejs16-docs-16.17.0-2.1.ppc64le", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-2.1.s390x as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x" }, "product_reference": "nodejs16-docs-16.17.0-2.1.s390x", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "nodejs16-docs-16.17.0-2.1.x86_64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64" }, "product_reference": "nodejs16-docs-16.17.0-2.1.x86_64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-2.1.aarch64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64" }, "product_reference": "npm16-16.17.0-2.1.aarch64", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-2.1.ppc64le as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le" }, "product_reference": "npm16-16.17.0-2.1.ppc64le", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-2.1.s390x as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x" }, "product_reference": "npm16-16.17.0-2.1.s390x", "relates_to_product_reference": "openSUSE Tumbleweed" }, { "category": "default_component_of", "full_product_name": { "name": "npm16-16.17.0-2.1.x86_64 as component of openSUSE Tumbleweed", "product_id": "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" }, "product_reference": "npm16-16.17.0-2.1.x86_64", "relates_to_product_reference": "openSUSE Tumbleweed" } ] }, "vulnerabilities": [ { "cve": "CVE-2022-31150", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-31150" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js. It is possible to inject CRLF sequences into request headers in undici in versions less than 5.7.1. A fix was released in version 5.8.0. Sanitizing all HTTP headers from untrusted sources to eliminate `\\r\\n` is a workaround for this issue.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-31150", "url": "https://www.suse.com/security/cve/CVE-2022-31150" }, { "category": "external", "summary": "SUSE Bug 1201710 for CVE-2022-31150", "url": "https://bugzilla.suse.com/1201710" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 5.3, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2024-06-15T00:00:00Z", "details": "moderate" } ], "title": "CVE-2022-31150" }, { "cve": "CVE-2022-35949", "ids": [ { "system_name": "SUSE CVE Page", "text": "https://www.suse.com/security/cve/CVE-2022-35949" } ], "notes": [ { "category": "general", "text": "undici is an HTTP/1.1 client, written from scratch for Node.js.`undici` is vulnerable to SSRF (Server-side Request Forgery) when an application takes in **user input** into the `path/pathname` option of `undici.request`. If a user specifies a URL such as `http://127.0.0.1` or `//127.0.0.1` ```js const undici = require(\"undici\") undici.request({origin: \"http://example.com\", pathname: \"//127.0.0.1\"}) ``` Instead of processing the request as `http://example.org//127.0.0.1` (or `http://example.org/http://127.0.0.1` when `http://127.0.0.1 is used`), it actually processes the request as `http://127.0.0.1/` and sends it to `http://127.0.0.1`. If a developer passes in user input into `path` parameter of `undici.request`, it can result in an _SSRF_ as they will assume that the hostname cannot change, when in actual fact it can change because the specified path parameter is combined with the base URL. This issue was fixed in `undici@5.8.1`. The best workaround is to validate user input before passing it to the `undici.request` call.", "title": "CVE description" } ], "product_status": { "recommended": [ "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" ] }, "references": [ { "category": "external", "summary": "CVE-2022-35949", "url": "https://www.suse.com/security/cve/CVE-2022-35949" }, { "category": "external", "summary": "SUSE Bug 1202382 for CVE-2022-35949", "url": "https://bugzilla.suse.com/1202382" } ], "remediations": [ { "category": "vendor_fix", "details": "To install this SUSE Security Update use the SUSE recommended installation methods like YaST online_update or \"zypper patch\".\n", "product_ids": [ "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" ] } ], "scores": [ { "cvss_v3": { "baseScore": 6.5, "baseSeverity": "MEDIUM", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "version": "3.1" }, "products": [ "openSUSE Tumbleweed:corepack16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:corepack16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-devel-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.s390x", "openSUSE Tumbleweed:nodejs16-docs-16.17.0-2.1.x86_64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.aarch64", "openSUSE Tumbleweed:npm16-16.17.0-2.1.ppc64le", "openSUSE Tumbleweed:npm16-16.17.0-2.1.s390x", "openSUSE Tumbleweed:npm16-16.17.0-2.1.x86_64" ] } ], "threats": [ { "category": "impact", "date": "2024-06-15T00:00:00Z", "details": "moderate" } ], "title": "CVE-2022-35949" } ] }
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.